
  
    /* ============================================
       DESIGN TOKENS
    ============================================ */
    :root {
      --red:    #ED2327;
      --red-d:  #c81e22;
      --olive:  #7D7F33;
      --black:  #181616;
      --white:  #FFFFFF;
      --o15:    rgba(125,127,51,0.12);
      --o40:    rgba(125,127,51,0.35);
      --border: rgba(255,255,255,0.07);
      --muted:  rgba(255,255,255,0.55);
      --dim:    rgba(255,255,255,0.28);
      --font:   'Montserrat', sans-serif;
      --nav-h:  80px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font); background: var(--black); color: var(--white); line-height: 1.7; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================
       UTILITIES
    ============================================ */
    .container      { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    .container--wide { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
    .sp  { padding: 100px 0; }
    .sp2 { padding: 64px 0; }
    .bg-s { background: rgba(255,255,255,0.018); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .divider { height: 1px; background: var(--border); }

    .grid-bg {
      background-image:
        linear-gradient(rgba(125,127,51,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125,127,51,0.05) 1px, transparent 1px);
      background-size: 72px 72px;
    }

    /* TYPE */
    .tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase;
      color: var(--olive); margin-bottom: 16px;
    }
    .tag::before { content: ''; width: 22px; height: 1px; background: var(--olive); }
    .h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; line-height: 1.06; letter-spacing: -0.025em; }
    .h2 em { font-style: normal; color: var(--red); }
    .body { font-size: 15px; line-height: 1.85; color: var(--muted); }

    /* BUTTONS */
    .btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; padding: 14px 28px; cursor: pointer; border: none; transition: all 0.22s; white-space: nowrap; }
    .btn svg { width: 14px; height: 14px; flex-shrink: 0; }
    .btn-r { background: var(--red); color: var(--white); }
    .btn-r:hover { background: var(--red-d); }
    .btn-g { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.22); }
    .btn-g:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
    .btn-sm { padding: 10px 20px; font-size: 10px; }

    /* IMG PLACEHOLDER */
    .ph {
      background: rgba(255,255,255,0.03); border: 1px dashed rgba(125,127,51,0.28);
      display: flex; align-items: center; justify-content: center; width: 100%;
    }
    .ph-hero { height: 460px; }
    .ph-wide { height: 340px; }
    .ph-card { height: 260px; }
    .ph-gal  { height: 200px; }
    .ph-port { height: 380px; }
    .ph-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(125,127,51,0.45); text-align: center; padding: 16px; }
    .ph-inner svg { width: 28px; height: 28px; }
    .ph-inner span { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
    .ph-inner small { font-size: 9px; color: rgba(255,255,255,0.18); }

    /* ============================================
       NAVIGATION
    ============================================ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--nav-h); background: rgba(24,22,22,0.97);
      backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    #nav.scrolled { border-bottom-color: rgba(255,255,255,0.13); box-shadow: 0 2px 32px rgba(0,0,0,0.45); }
    .nav-inner { max-width: 1440px; margin: 0 auto; padding: 0 48px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

    .nav-logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
    .nav-logo img { width: auto; height: 44px; max-height: 44px; max-width: 140px; object-fit: contain; mix-blend-mode: lighten; display: block; }
    .nav-logo .custom-logo-link { display: flex; align-items: center; }

    .nav-links { display: flex; align-items: center; flex: 1; justify-content: center; }
    .nav-link {
      display: block; padding: 8px 15px;
      font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.45); transition: color 0.2s; position: relative;
    }
    .nav-link::after { content: ''; position: absolute; bottom: 0; left: 15px; right: 15px; height: 1px; background: var(--red); transform: scaleX(0); transition: transform 0.22s; }
    .nav-link:hover, .nav-link.active { color: var(--white); }
    .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
    .nav-cta { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 10px 22px; background: var(--red); color: var(--white); transition: background 0.2s; white-space: nowrap; }
    .nav-cta:hover { background: var(--red-d); }

    /* MOBILE TOGGLE */
    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .burger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-drawer {
      position: fixed; top: var(--nav-h); left: 0; right: 0;
      height: fit-content;
      background: var(--black); z-index: 999; padding: 24px 28px 40px;
      transform: translateX(100%); transition: transform 0.33s ease;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-nav { display: flex; flex-direction: column; flex: 1; }
    .mobile-nav a { font-size: 18px; font-weight: 800; padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--white); }
    .mobile-cta { margin-top: 24px; width: 100%; justify-content: center; flex-shrink: 0; }



    /* ============================================
       PAGE SYSTEM
    ============================================ */
    /* WordPress standalone pages — no display:none needed */
    

    /* ============================================
       PAGE HERO
    ============================================ */
    .page-hero {
      padding: 80px 0 72px; position: relative; overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .page-hero.short { padding: 60px 0 56px; }
    .page-hero .grid-bg { position: absolute; inset: 0; }
    .page-hero .grid-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 55% at 25% 60%, rgba(237,35,39,0.05) 0%, transparent 65%); }
    .page-hero__inner { position: relative; z-index: 1; max-width: 740px; }
    .page-hero__title { font-size: clamp(34px, 5vw, 62px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 18px; }
    .page-hero__title em { font-style: normal; color: var(--red); }
    .page-hero__sub { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 580px; }

    /* ============================================
       HOME — HERO
    ============================================ */
    #page-home .hero {
      min-height: calc(100vh - var(--nav-h)); display: grid; position: relative; overflow: hidden;
    }
    #page-home .hero .grid-bg { position: absolute; inset: 0; }
    #page-home .hero .grid-bg::after {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 65% at 18% 55%, rgba(237,35,39,0.06) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 82% 75%, rgba(125,127,51,0.07) 0%, transparent 60%);
    }
    #page-home .hero .container--wide {
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
      align-items: stretch; padding-top: 80px; padding-bottom: 72px; position: relative; z-index: 1;
    }
    .hero-content { display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }

    .hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
    .hero-eyebrow-line { width: 36px; height: 1px; background: var(--red); }
    .hero-eyebrow-text { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red); }
    .hero-headline { font-size: clamp(44px, 5.8vw, 78px); font-weight: 900; line-height: 0.97; letter-spacing: -0.03em; margin-bottom: 26px; }
    .hero-headline .l2 { color: rgba(255,255,255,0.2); }
    .hero-headline .la { color: var(--red); }
    .hero-sub { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 500px; margin-bottom: 40px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
    .hero-img {
      position: relative;
      min-height: 420px;
      max-height: 560px;
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
    }

    .hero-img > div {
      position: absolute !important;
      inset: 0 !important;
      height: 100% !important;
    }

    .hero-img > div img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      object-position: center top !important;
    }

    .hero-img-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(24,22,22,0.92));
      padding: 40px 20px 20px;
      display: flex; justify-content: space-between; align-items: flex-end;
      z-index: 2;
    }

    .hil-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive); margin-bottom: 4px; }
    .hil-val { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }

    /* Floating side indicators */
    .side-tags { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: 3px; }
    .side-tag {
      font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.18); display: flex; align-items: center; gap: 10px;
      padding: 9px 14px; border: 1px solid transparent; transition: all 0.35s;
    }
    .side-tag.on { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
    .side-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--olive); opacity: 0.4; flex-shrink: 0; }
    .side-tag.on .dot { background: var(--red); opacity: 1; }

    /* ============================================
       HOME — INTRO
    ============================================ */
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: gap 0.2s; color: var(--white); }
    .text-link svg { width: 14px; height: 14px; }
    .text-link:hover { gap: 14px; }

    /* ============================================
       HOME — PILLARS
    ============================================ */
    .pillars-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
      margin-top: 48px;
    }
    .pillar {
      background: var(--black); padding: 38px 30px; position: relative; transition: background 0.3s;
    }
    .pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--olive); opacity: 0; transition: opacity 0.3s; }
    .pillar:hover { background: rgba(125,127,51,0.06); }
    .pillar:hover::before { opacity: 1; }
    .pillar-n  { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.18); margin-bottom: 28px; }
    .pillar-ic { width: 36px; height: 36px; color: var(--olive); margin-bottom: 18px; }
    .pillar-ic svg { width: 100%; height: 100%; }
    .pillar-nm { font-size: 14px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
    .pillar-ds { font-size: 13px; line-height: 1.7; color: var(--muted); }

    /* ============================================
       HOME — PLATFORM CARDS
    ============================================ */
    .two-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
    .plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .plat-card { border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s; }
    .plat-card:hover { border-color: rgba(125,127,51,0.35); }
    .plat-card .ph-card { height: 210px; }
    .plat-body { padding: 26px 26px 28px; }
    .badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--olive); border: 1px solid var(--o40); padding: 3px 10px; margin-bottom: 12px; }
    .badge.red { color: var(--red); border-color: rgba(237,35,39,0.35); }
    .plat-name { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 4px; }
    .plat-sub  { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
    .plat-desc { font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 18px; }

    /* ============================================
       HOME — INDUSTRIES STRIP
    ============================================ */
    .ind-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
    .ind-item { background: var(--black); padding: 30px 22px; display: flex; flex-direction: column; gap: 12px; transition: background 0.3s; cursor: pointer; }
    .ind-item:hover { background: rgba(237,35,39,0.06); }
    .ind-n { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.2); }
    .ind-name { font-size: 13px; font-weight: 800; line-height: 1.3; flex: 1; }
    .ind-arr { width: 18px; height: 18px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
    .ind-item:hover .ind-arr { color: var(--red); }

    /* ============================================
       HOME — STEPS STRIP
    ============================================ */
    .steps-strip { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; gap: 0; margin-top: 56px; }
    .steps-strip::before { content: ''; position: absolute; top: 23px; left: 60px; right: 60px; height: 1px; background: rgba(255,255,255,0.08); }
    .s-step { padding: 0 24px 0 0; }
    .s-step-n {
      width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.12); background: var(--black);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 1; transition: all 0.3s;
    }
    .s-step:hover .s-step-n { border-color: var(--red); background: var(--red); }
    .s-step-name { font-size: 15px; font-weight: 800; margin-bottom: 10px; }
    .s-step-desc { font-size: 13px; line-height: 1.7; color: var(--muted); }

    /* ============================================
       CTA BAND
    ============================================ */
    .cta-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
    .cta-acts { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

    /* ============================================
       CAPABILITIES PAGE
    ============================================ */
    .cap-block { margin-bottom: 0; }
    .cap-header { display: grid; grid-template-columns: 72px 1fr; gap: 28px; align-items: start; margin-bottom: 36px; }
    .cap-big-n { font-size: 13px; font-weight: 800; letter-spacing: 0.15em; color: var(--olive); line-height: 1; padding-top: 6px; }
    .cap-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; }
    .cap-intro { font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 640px; }
    .cap-list { display: flex; flex-direction: column; gap: 11px; margin-top: 28px; }
    .cap-list li { font-size: 14px; font-weight: 500; color: var(--muted); display: flex; gap: 14px; line-height: 1.6; }
    .cap-list li::before { content: ''; width: 16px; height: 1px; background: var(--red); margin-top: 12px; flex-shrink: 0; }

    /* ============================================
       SOLUTIONS PAGE
    ============================================ */
    .sol-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .sol-layout.rev .sol-img { order: 2; }
    .sol-layout.rev .sol-body { order: 1; }
    .sol-n { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: var(--olive); margin-bottom: 12px; }
    .sol-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 14px; }
    .sol-body { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 24px; }

    /* ============================================
       PLATFORMS PAGE
    ============================================ */
    .plat-full-meta { margin-bottom: 28px; }
    .plat-full-name { font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; letter-spacing: -0.025em; margin: 10px 0 6px; }
    .plat-full-sub  { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
    .plat-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0; }
    .plat-full-body { font-size: 15px; line-height: 1.85; color: var(--muted); max-width: 760px; margin-bottom: 24px; }
    .key-list { display: flex; flex-direction: column; gap: 11px; }
    .key-list li { font-size: 14px; color: var(--muted); display: flex; gap: 14px; }
    .key-list li::before { content: ''; width: 14px; height: 1px; background: var(--olive); margin-top: 12px; flex-shrink: 0; }

    /* ============================================
       INDUSTRIES PAGE
    ============================================ */
    .ind-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .ind-layout .ph-card { height: 320px; }
    .ind-big-n { font-size: 13px; font-weight: 800; letter-spacing: 0.15em; color: var(--olive); margin-bottom: 12px; }
    .ind-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 900; margin-bottom: 14px; }
    .ind-body  { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 24px; }

    /* ============================================
       ABOUT PAGE
    ============================================ */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-imgs .ph-port { height: 240px; }
    .gov-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .gov-list { display: flex; flex-direction: column; }
    .gov-item { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 14px; }
    .gov-item:first-child { border-top: 1px solid var(--border); }
    .gov-item::before { content: ''; width: 14px; height: 1px; background: var(--red); flex-shrink: 0; }

    /* ============================================
       HOW WE WORK PAGE
    ============================================ */
    .step-full { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .step-full.rev .sf-img { order: 2; }
    .step-full.rev .sf-body { order: 1; }
    .sf-big-n { font-size: 13px; font-weight: 800; letter-spacing: 0.15em; color: var(--olive); margin-bottom: 12px; }
    .sf-title { font-size: clamp(24px, 2.8vw, 36px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 14px; }
    .sf-desc  { font-size: 15px; line-height: 1.85; color: var(--muted); }
    .conf-band { background: rgba(237,35,39,0.04); border-top: 1px solid rgba(237,35,39,0.12); border-bottom: 1px solid rgba(237,35,39,0.12); border-left: 3px solid var(--red); }
    .conf-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .conf-item { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 14px; }
    .conf-item:first-child { border-top: 1px solid var(--border); }
    .conf-item::before { content: ''; width: 14px; height: 1px; background: var(--red); flex-shrink: 0; }

    /* ============================================
       CONTACT PAGE
    ============================================ */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-detail { margin-top: 32px; }
    .cd-label { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
    .cd-value { font-size: 16px; font-weight: 600; }
    .cd-value a { color: var(--white); transition: color 0.2s; }
    .cd-value a:hover { color: var(--red); }
    .form-wrap { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 40px; }
    .form-row { margin-bottom: 18px; }
    .form-row label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
    .form-row input, .form-row textarea, .form-row select {
      width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      color: var(--white); font-family: var(--font); font-size: 14px; padding: 12px 16px; outline: none; transition: border-color 0.2s; appearance: none;
    }
    .form-row input:focus, .form-row textarea:focus { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
    .form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.2); }
    .form-row textarea { resize: vertical; min-height: 120px; }

    /* ============================================
       FOOTER
    ============================================ */
    #footer { border-top: 1px solid var(--border); }
    .footer-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; padding: 64px 0 52px; }
    .footer-logo { width: 60px; height: 60px; object-fit: contain; margin-bottom: 14px; mix-blend-mode: lighten; }
    .footer-tagline { font-size: 12px; line-height: 1.7; color: var(--dim); max-width: 220px; margin-bottom: 20px; }
    .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 13px; color: var(--dim); transition: color 0.2s; }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.5); }

    /* ============================================
       REVEAL ANIMATIONS
    ============================================ */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.on { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 1100px) {
      #page-home .hero .container--wide { grid-template-columns: 1fr; align-items: start; padding-bottom: 0; }
      .hero-img { display: block; min-height: 280px; max-height: 320px; }
      .side-tags { display: none; }
      .pillars-grid { grid-template-columns: 1fr 1fr; }
      .plat-grid { grid-template-columns: 1fr 1fr; }
      .two-header { grid-template-columns: 1fr; gap: 20px; }
      .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 68px; }
      .container, .container--wide { padding: 0 24px; }
      .sp { padding: 60px 0; }
      .nav-links, .nav-cta { display: none; }
      .burger { display: flex; }
      .pillars-grid { grid-template-columns: 1fr; }
      .plat-grid { grid-template-columns: 1fr; }
      .ind-strip { grid-template-columns: 1fr 1fr; }
      .steps-strip { grid-template-columns: 1fr 1fr; gap: 28px; }
      .steps-strip::before { display: none; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
      .sol-layout, .ind-layout, .about-grid, .step-full, .conf-inner, .contact-grid, .gov-layout { grid-template-columns: 1fr; }
      .sol-layout.rev .sol-img, .sol-layout.rev .sol-body, .step-full.rev .sf-img, .step-full.rev .sf-body { order: unset; }
      .plat-gallery { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-cols { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; }
    }

    

  

    /* ============================================
       MOBILE OPTIMISATION — 480px & below
    ============================================ */
    @media (max-width: 480px) {
      /* Typography — tighter for small screens */
      .hero-headline  { font-size: clamp(34px, 10vw, 44px); letter-spacing: -0.02em; }
      .page-hero__title { font-size: clamp(28px, 9vw, 38px); }
      .h2, .section-title { font-size: clamp(24px, 8vw, 32px); }

      /* Collapse remaining 2-col grids */
      .ind-strip       { grid-template-columns: 1fr; }
      .steps-strip     { grid-template-columns: 1fr; }
      .footer-cols     { grid-template-columns: 1fr; }
      .about-imgs      { grid-template-columns: 1fr; }

      /* Stack hero actions */
      .hero-actions    { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }

      /* Stack CTA buttons */
      .cta-acts        { flex-direction: column; width: 100%; }
      .cta-acts .btn   { width: 100%; justify-content: center; }

      /* Tighter section spacing */
      .sp              { padding: 48px 0; }
      .container, .container--wide { padding: 0 20px; }

      /* Platform & pillar cards */
      .plat-card .ph-card, .plat-card > div:first-child { height: 200px; }

      /* Form full width */
      .form-wrap       { padding: 24px 20px; }

      /* Footer tighter */
      .footer-grid     { padding: 48px 0 36px; }

      /* Page hero tighter */
      .page-hero       { padding: 80px 0 72px; }
      .page-hero.short { padding: 60px 0 56px; }
    }

    /* ============================================
       TOUCH TARGETS — minimum 44px tap areas
    ============================================ */
    .btn          { min-height: 44px; }
    .nav-link     { min-height: 44px; display: flex; align-items: center; }
    .nav-cta      { min-height: 44px; display: flex; align-items: center; }
    .mobile-nav a { min-height: 52px; display: flex; align-items: center; }
    .burger       { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }

    /* ============================================
       IMAGE HEIGHT FIXES ON MOBILE
    ============================================ */
    @media (max-width: 768px) {
      /* Cap fixed-height image containers */
      .ph-hero, [style*="height:500px"] { height: 220px !important; }
      .hero-img { min-height: 200px; max-height: 220px; }
      [style*="height:460px"] { height: 260px !important; }
      [style*="height:380px"] { height: 220px !important; }
      [style*="height:340px"] { height: 220px !important; }
      [style*="height:320px"] { height: 220px !important; }
      [style*="height:280px"] { height: 200px !important; }
      [style*="height:210px"] { height: 180px !important; }

      /* Hero image zone if visible */
      .hero-img       { min-height: 220px; max-height: 260px; }

      /* Two header tighter */
      .two-header     { margin-bottom: 32px; }

      /* Cap-header single col already handled, just tighten num */
      /* section numbers handled globally */

      /* Steps strip connector line gone */
      .steps-strip::before { display: none; }

      /* Platform gallery = 1 col */
      .plat-gallery { grid-template-columns: 1fr; gap: 10px; }
      .plat-gallery > div { height: 160px !important; }

      /* Footer cols 2 col on 768 */
      .footer-cols { grid-template-columns: 1fr 1fr; }
    }

    /* ============================================
       SMOOTH SCROLLING & OVERFLOW SAFETY
    ============================================ */
    html { overflow-x: hidden; }
    body { overflow-x: hidden; }
    img  { max-width: 100%; height: auto; }

    /* Prevent text overflow on small screens */
    @media (max-width: 480px) {
      .plat-full-name, .sf-title { word-break: break-word; }
      .hero-headline .l2, .hero-headline .la { display: inline; }
    }

  
    /* ── CONTACT FORM RESPONSE ── */
    .form-response { margin-top: 16px; padding: 12px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; display: none; }
    .form-response.success { display: block; background: rgba(125,127,51,0.15); border: 1px solid var(--olive); color: var(--olive); }
    .form-response.error   { display: block; background: rgba(237,35,39,0.1);  border: 1px solid var(--red);  color: var(--red); }
    #zag-contact-form input, #zag-contact-form textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--white); padding: 12px 14px; font-family: var(--font); font-size: 14px; border-radius: 2px; outline: none; transition: border-color 0.2s; }
    #zag-contact-form input:focus, #zag-contact-form textarea:focus { border-color: var(--olive); }
    #zag-contact-form textarea { resize: vertical; min-height: 120px; }
    #zag-contact-form button:disabled { opacity: 0.6; cursor: not-allowed; }
