  :root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --navy-light: #1a3460;
    --blue: #1e5799;
    --blue-bright: #2575d0;
    --orange: #f07c1a;
    --orange-glow: #ff9a40;
    --white: #ffffff;
    --off-white: #f4f6fa;
    --gray: #8a9bb5;
    --light-border: rgba(255,255,255,0.08);
    --hero-nav-offset-desktop: 100px;
    --hero-nav-offset-tablet: 88px;
    --hero-nav-offset-mobile: 74px;
  }

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

  html {
    scroll-behavior: smooth;
    background: var(--navy);
  }

  * {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) rgba(10,22,40,0.72);
  }
  *::-webkit-scrollbar {
    width: 11px;
    height: 11px;
  }
  *::-webkit-scrollbar-track {
    background: rgba(10,22,40,0.72);
  }
  *::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-glow) 100%);
    border-radius: 20px;
    border: 2px solid rgba(10,22,40,0.72);
  }
  *::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--orange-glow) 0%, var(--orange) 100%);
  }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ─── CURSOR ─────────────────────────────────── */
  .cursor {
    width: 12px; height: 12px;
    background: var(--orange);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(240,124,26,0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform 0.3s ease, opacity 0.2s;
    transform: translate(-50%, -50%);
  }
  .cursor,
  .cursor-ring {
    display: none !important;
  }

  /* ─── NAV ────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 46px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 34px;
    background: rgba(16,33,58,0.95);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--light-border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    perspective: 900px;
  }
  .nav-logo img {
    height: 68px;
    filter: drop-shadow(0 0 12px rgba(240,124,26,0.4));
    transform-style: preserve-3d;
    backface-visibility: visible;
    transform-origin: 50% 50%;
    will-change: transform, filter;
    animation: navLogoCoinFlipPerfect 10s cubic-bezier(0.24, 0.78, 0.22, 1) infinite;
  }
  @keyframes navLogoCoinFlipPerfect {
    0%,
    10%,
    100% {
      transform: perspective(960px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1);
      filter: drop-shadow(0 0 12px rgba(240,124,26,0.4));
    }
    1.7% {
      transform: perspective(960px) rotateY(-62deg) rotateX(3deg) rotateZ(-1.5deg) scale(1.03);
      filter: drop-shadow(0 0 15px rgba(255,171,92,0.5));
    }
    3.4% {
      transform: perspective(960px) rotateY(-126deg) rotateX(1deg) rotateZ(-0.4deg) scaleX(0.42) scaleY(1.02);
      filter: drop-shadow(0 0 14px rgba(255,171,92,0.48));
    }
    5.1% {
      transform: perspective(960px) rotateY(-196deg) rotateX(-1.2deg) rotateZ(0.8deg) scaleX(0.52) scaleY(1.02);
      filter: drop-shadow(0 0 14px rgba(255,171,92,0.47));
    }
    6.8% {
      transform: perspective(960px) rotateY(-266deg) rotateX(-2.4deg) rotateZ(1.4deg) scaleX(0.42) scaleY(1.01);
      filter: drop-shadow(0 0 13px rgba(255,171,92,0.45));
    }
    8.6% {
      transform: perspective(960px) rotateY(-326deg) rotateX(-0.8deg) rotateZ(0.4deg) scale(1.02);
      filter: drop-shadow(0 0 12px rgba(240,124,26,0.42));
    }
    10% {
      transform: perspective(960px) rotateY(-360deg) rotateX(0deg) rotateZ(0deg) scale(1);
      filter: drop-shadow(0 0 12px rgba(240,124,26,0.4));
    }
  }
  .nav-links {
    display: flex; gap: 46px; list-style: none;
    width: 100%;
    min-width: 0;
    justify-content: center;
    align-items: center;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: inline-block;
    white-space: nowrap;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--orange);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-mobile-only { display: none; }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue-bright);
    color: var(--white) !important;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.25s, transform 0.2s !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-cta:hover {
    background: var(--blue) !important;
    transform: translateY(-1px) !important;
    text-decoration: none;
  }
  .nav-cta::after { display: none !important; }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 2;
  }
  .nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 6px 14px;
    border: 1px solid var(--light-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
  }
  .nav-right .nav-search { margin-right: 14px; }
  .nav-search-desktop { display: flex; }
  .nav-search:focus-within {
    border-color: rgba(240,124,26,0.75);
    box-shadow: 0 0 0 2px rgba(240,124,26,0.2);
  }
  .nav-search-input {
    width: 220px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
  }
  .nav-search-input::placeholder { color: rgba(255,255,255,0.6); }
  .nav-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: none;
    background: var(--orange);
    color: var(--white);
    border-radius: 999px;
    padding: 9px 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .nav-btn-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
  .nav-search-btn:hover { background: var(--orange-glow); }
  .nav-search-suggestions-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #0f2342;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    padding: 6px;
    z-index: 1200;
    max-height: 320px;
    overflow-y: auto;
  }
  .nav-search-suggestions-panel[hidden] { display: none; }
  .nav-search-suggestion-item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.84);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .nav-search-suggestion-item:hover {
    background: rgba(37,117,208,0.18);
    color: var(--white);
  }
  .nav-search-suggestion-item.is-active {
    background: rgba(37,117,208,0.18);
    color: var(--white);
  }
  .nav-search-suggestion-item.is-active .nav-search-suggestion-type {
    color: rgba(255,255,255,0.74);
  }
  .nav-search-suggestion-type {
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .mobile-search-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10100;
  }
  .mobile-search-modal.is-open {
    display: block;
  }
  .mobile-search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
    backdrop-filter: blur(3px);
  }
  .mobile-search-modal-panel {
    position: absolute;
    left: 50%;
    top: max(18px, env(safe-area-inset-top));
    transform: translateX(-50%);
    width: min(540px, calc(100% - 28px));
    max-height: calc(100dvh - max(36px, env(safe-area-inset-top)) - max(18px, env(safe-area-inset-bottom)));
    background: rgba(10,22,40,0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow: 0 20px 44px rgba(0,0,0,0.44);
    padding: 12px;
    display: flex;
    flex-direction: column;
  }
  .mobile-search-close {
    position: absolute;
    top: 6px;
    right: 10px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.72);
    font-size: 1.85rem;
    line-height: 1;
    cursor: pointer;
  }
  .mobile-search-close:hover {
    color: #fff;
  }
  .mobile-search-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.06em;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 10px;
  }
  .mobile-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .mobile-search-input {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 11px 12px;
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
  }
  .mobile-search-input::placeholder {
    color: rgba(255,255,255,0.56);
  }
  .mobile-search-input:focus {
    border-color: rgba(240,124,26,0.75);
    box-shadow: 0 0 0 2px rgba(240,124,26,0.16);
  }
  .mobile-search-submit {
    border: none;
    border-radius: 999px;
    padding: 0 16px;
    min-height: 44px;
    background: var(--orange);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mobile-search-submit:hover {
    background: var(--orange-glow);
  }
  .mobile-search-suggestions {
    margin-top: 10px;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(16,38,70,0.68);
    max-height: min(54vh, 420px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .mobile-search-suggestions[hidden] {
    display: none;
  }
  .mobile-search-suggestions .nav-search-suggestion-item {
    padding: 11px 12px;
    border-radius: 6px;
  }

  /* Dropdown Menu */
  .nav-dropdown { position: relative; }
  .nav-dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
  }
  .nav-dropdown-caret {
    font-size: 0.72em;
    line-height: 1;
    transition: transform 0.24s ease;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 1000;
  }
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu li { list-style: none; }
  .dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.2s;
  }
  .dropdown-menu a:hover {
    color: var(--white);
    background: rgba(240,124,26,0.1);
    padding-left: 28px;
  }

  /* ─── HERO ───────────────────────────────────── */
  .hero {
    min-height: calc(100vh - var(--hero-nav-offset-desktop));
    display: flex; align-items: center;
    position: relative; overflow: hidden; isolation: isolate;
    margin-top: var(--hero-nav-offset-desktop);
    padding: 120px 60px 80px;
    background-color: #07152a;
    background-image: url('../hero/pc_hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: none;
  }
  .hero-split-bg {
    position: absolute;
    inset: 0;
    display: none;
    z-index: 0;
    background: none;
  }
  .hero-split-bg::before {
    display: none;
  }
  .hero-split-left {
    display: none;
  }
  .hero-split-left::before {
    display: none;
  }
  .hero-split-left::after {
    display: none;
  }
  .hero-split-right {
    display: none;
  }
  .hero-split-right::after {
    display: none;
  }

  .hero-content {
    position: relative; z-index: 3;
    width: min(760px, 48vw);
    max-width: none;
    margin-top: calc(214px - var(--hero-nav-offset-desktop));
  }
  .hero-prune-target {
    visibility: hidden;
    pointer-events: none;
  }
  .hero-prelude {
    animation: fadeUp 0.8s 0.12s both;
  }
  .hero-prelude-floating {
    position: absolute;
    top: calc(164px - var(--hero-nav-offset-desktop));
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    pointer-events: none;
  }
  .hero-prelude-top {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.3rem, 6.2vw, 5.2rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.06em;
    line-height: 0.92;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-bottom: 10px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.58);
  }
  .hero-prelude-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
  }
  .hero-prelude-divider::before,
  .hero-prelude-divider::after {
    content: '';
    height: 1px;
    flex: 0 1 clamp(90px, 20vw, 280px);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  }
  .hero-prelude-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    font-size: clamp(1rem, 1.45vw, 1.32rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow:
      0 1px 2px rgba(4, 10, 21, 0.92),
      0 3px 10px rgba(4, 10, 21, 0.64),
      0 0 18px rgba(4, 10, 21, 0.46);
    -webkit-text-stroke: 0.35px rgba(4, 10, 21, 0.58);
    paint-order: stroke fill;
  }
  .hero-word-white { color: var(--white); }
  .hero-word-blue { color: var(--blue-bright); }
  .hero-word-orange { color: var(--orange); }
  .hero-prelude-brand { color: var(--white); }
.hero-prelude-tagline { color: var(--white); }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(240,124,26,0.12);
    border: 1px solid rgba(240,124,26,0.3);
    padding: 6px 16px; border-radius: 100px;
    font-size: 0.75rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.2s both;
  }
  .hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.4s both;
  }
  .hero h1.hero-main-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    gap: 0.28em;
    row-gap: 0;
    width: min(620px, 86%);
    max-width: min(620px, 86%);
    white-space: nowrap;
    text-wrap: nowrap;
    font-size: clamp(0.9rem, calc(0.96vw + 0.16rem), 1.34rem);
    line-height: 1.22;
    letter-spacing: 0.09em;
    color: var(--orange);
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(240,124,26,0.45);
    background: rgba(240,124,26,0.12);
    box-shadow: 0 10px 28px rgba(240,124,26,0.2);
    animation: fadeUp 0.8s 0.4s both, heroPillPulse 3.6s 1.2s ease-in-out infinite;
  }
  .hero-main-title .hero-title-primary,
  .hero-main-title .hero-title-accent {
    display: inline;
    white-space: inherit;
    position: relative;
    z-index: 1;
  }
  .hero-title-primary { color: inherit; }
  .hero-title-accent {
    color: inherit;
  }
  @keyframes heroPillPulse {
    0%, 100% {
      border-color: rgba(240,124,26,0.45);
      background: rgba(240,124,26,0.12);
      box-shadow: 0 10px 28px rgba(240,124,26,0.2);
    }
    50% {
      border-color: rgba(255,154,64,0.78);
      background: rgba(240,124,26,0.2);
      box-shadow: 0 14px 36px rgba(240,124,26,0.34);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero h1.hero-main-title { animation: none; }
  }
  .hero h1 .line-orange { color: var(--orange); }
  .hero h1 .line-dim { color: rgba(255,255,255,0.4); font-style: italic; font-family: 'DM Serif Display', serif; font-size: 0.65em; display: block; letter-spacing: 0; }
  @media (prefers-reduced-motion: reduce) {
    .nav-logo img {
      animation: none;
    }
  }

  .hero p {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 44px;
    max-width: min(620px, 86%);
    animation: fadeUp 0.8s 0.6s both;
  }

  .hero-actions {
    --hero-actions-shift: -28px;
    display: flex; gap: 20px; flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: -16px;
    transform: translateY(var(--hero-actions-shift));
    animation: heroActionsEntrance 0.8s 0.8s both;
  }
  @keyframes heroActionsEntrance {
    from {
      opacity: 0;
      transform: translateY(calc(var(--hero-actions-shift) + 28px));
    }
    to {
      opacity: 1;
      transform: translateY(var(--hero-actions-shift));
    }
  }
  .hero-actions .hero-action-btn {
    width: clamp(210px, 19vw, 260px);
    min-height: 52px;
    padding: 10px 16px;
    gap: 8px;
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-actions .hero-btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 16px 36px;
    border: none; border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 10px;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 32px rgba(240,124,26,0.35);
  }
  .btn-primary:hover { background: var(--orange-glow); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,124,26,0.5); }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
  .hero-actions .btn-watch {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37,117,208,0.35);
  }
  .hero-actions .btn-watch:hover {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 12px 38px rgba(30,87,153,0.45);
  }

  .hero-right {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 52%; z-index: 1;
    overflow: hidden;
  }
  .hero-collage {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    opacity: 0.65;
  }
  .hero-collage-img {
    overflow: hidden;
    position: relative;
    min-height: 0;
  }
  .hero-collage-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    filter: saturate(0.8) brightness(0.85);
  }
  .hero-collage-img:hover img { transform: scale(1.08); }
  .hero-collage-img.span2 { grid-column: span 2; }
  .hero-collage-img.span2r { grid-row: span 2; }
  .hero-fade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, rgba(10,22,40,0.4) 35%, transparent 60%);
  }
  .hero-fade-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(to top, var(--navy), transparent);
  }

  /* ─── SCROLL INDICATOR ───── */
  .scroll-hint {
    position: absolute; bottom: 40px; left: 60px; z-index: 10;
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: fadeUp 1s 1.2s both;
  }
  .scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.2); }
  .scroll-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: bounce 2s infinite; }
  @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

  /* ─── STATS STRIP ─────────────────────────────── */
  .stats-strip {
    background: var(--navy-mid);
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
    padding: 32px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--light-border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── SECTION COMMONS ─────────────────────────── */
  section { padding: 110px 60px; }
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--orange); }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
  }
  .section-title .accent { color: var(--orange); }
  .section-sub {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
  }

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

  /* ─── PRODUCTS ────────────────────────────────── */
  .products {
    background: var(--navy);
    padding-top: 64px;
    padding-bottom: 44px;
  }
  .products-header { margin-bottom: 36px; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }
  .product-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
  }
  .product-card img {
    width: 100%; height: 100%;
    object-fit: fill;
    transition: transform 0.6s ease, filter 0.4s;
    filter: brightness(0.95) saturate(1);
  }
  .product-card:hover img { transform: scale(1.05); filter: brightness(0.86) saturate(1.05); }
  .product-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.46) 0%, rgba(10,22,40,0.14) 58%, rgba(10,22,40,0.02) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px;
  }
  .product-card-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem; letter-spacing: 0.03em; text-transform: none;
    line-height: 1.35;
    padding: 6px 10px; border-radius: 2px;
    margin-top: 10px;
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }
  .product-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin-bottom: 0;
  }
  .product-card-desc {
    display: none;
  }
  .product-card:hover .product-card-desc { display: none; }
  .product-card-arrow {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px;
    background: rgba(240,124,26,0);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
    opacity: 0;
  }
  .product-card:hover .product-card-arrow { opacity: 1; background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }


  /* ─── WHY US ──────────────────────────────────── */
  .why-us {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative; overflow: hidden; isolation: isolate;
    padding-top: 44px;
    padding-bottom: 64px;
  }
  .why-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22vw;
    color: rgba(255,255,255,0.022);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.05em;
  }
  .why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative; z-index: 1;
  }
  .why-image-stack {
    position: relative; height: 560px;
  }
  .why-img-main {
    position: absolute; inset: 0;
    border-radius: 4px;
    overflow: hidden;
  }
  .why-img-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
  .why-img-float {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px; height: 180px;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--navy-mid);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .why-img-float img { width: 100%; height: 100%; object-fit: cover; }
  .why-badge-float {
    position: absolute;
    top: 30px; right: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(240,124,26,0.4);
  }
  .why-badge-float .num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; line-height: 1; }
  .why-badge-float .txt { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

  .why-features {
    display: flex; flex-direction: column; gap: 32px;
    margin-top: 40px;
  }
  /* Separator between Why Us and Design & Planning */
  .section-separator {
    position: relative;
    height: 0;
    margin: 0;
    z-index: 3;
  }
  .section-separator::before {
    content: '';
    display: block;
    width: 84px;
    height: 2px;
    margin: -1px auto;
    background: linear-gradient(
      90deg,
      rgba(240,124,26,0) 0%,
      rgba(240,124,26,0.9) 50%,
      rgba(240,124,26,0) 100%
    );
    border-radius: 999px;
  }
  .why-feature {
    display: flex; gap: 20px;
    align-items: flex-start;
  }
  .why-feature-icon {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: 4px;
    background: rgba(240,124,26,0.12);
    border: 1px solid rgba(240,124,26,0.25);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
  }
  .why-feature-icon svg { width: 24px; height: 24px; }
  .why-feature:hover .why-feature-icon { background: rgba(240,124,26,0.25); }
  .why-feature h4 { font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
  .why-feature p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

  /* ─── SECTORS ─────────────────────────────────── */
  .sectors { background: var(--navy-mid); }
  .sectors-header { margin-bottom: 60px; }
  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .sector-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 36px 28px;
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .sector-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(240,124,26,0.07), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .sector-card:hover { border-color: rgba(240,124,26,0.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
  .sector-card:hover::before { opacity: 1; }
  .sector-icon { width: 32px; height: 32px; margin-bottom: 16px; }
  .sector-icon svg { width: 100%; height: 100%; }
  .sector-name { font-weight: 600; font-size: 1rem; margin-bottom: 8px; }
  .sector-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
  .sector-card .sector-num {
    position: absolute; top: 20px; right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem; color: rgba(255,255,255,0.04);
    line-height: 1;
  }

  /* ─── PROCESS ─────────────────────────────────── */
  .process { background: var(--navy); }
  .process-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .process-steps {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 40px;
  }
  .process-step {
    display: flex; gap: 24px;
    padding-bottom: 40px;
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute; left: 18px; top: 44px; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(240,124,26,0.5), transparent);
  }
  .step-num {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(240,124,26,0.4);
  }
  .step-content h4 { font-weight: 600; margin-bottom: 6px; font-size: 1rem; }
  .step-content p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }

  .process-visual {
    position: sticky; top: 120px;
    border-radius: 4px; overflow: hidden;
    height: 480px;
  }
  .process-visual img { width: 100%; height: 100%; object-fit: cover; }
  .process-visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.6), transparent);
    display: flex; align-items: flex-end; padding: 30px;
  }
  .process-visual-text {
    background: rgba(240,124,26,0.9);
    padding: 20px 24px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
  }
  .process-visual-text p { font-size: 0.9rem; font-weight: 600; font-style: italic; }

  /* ─── GALLERY ─────────────────────────────────── */
  .gallery { background: var(--navy-mid); padding-bottom: 0; }
  .gallery-header { margin-bottom: 50px; }
  .gallery-marquee {
    overflow: hidden;
    padding-bottom: 110px;
  }
  .gallery-track {
    display: flex; gap: 16px;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  .gallery-track:hover { animation-play-state: paused; }
  @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
  .gallery-item {
    width: 280px; height: 200px; min-width: 280px;
    border-radius: 4px; overflow: hidden;
    position: relative;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item-label {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
    display: flex; align-items: flex-end; padding: 16px;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-item-label { opacity: 1; }
  .gallery-item-label span { font-size: 0.8rem; font-weight: 600; color: var(--white); }

  /* ─── TESTIMONIALS ────────────────────────────── */
  .testimonials { background: var(--navy); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 36px;
    position: relative;
    transition: border-color 0.3s;
  }
  .testi-card:hover { border-color: rgba(240,124,26,0.3); }
  .testi-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 2px; }
  .testi-text { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 28px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: var(--white);
  }
  .testi-name { font-weight: 600; font-size: 0.9rem; }
  .testi-role { font-size: 0.75rem; color: var(--gray); }
  .testi-quote {
    position: absolute; top: 20px; right: 24px;
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    color: rgba(240,124,26,0.08);
    line-height: 1;
  }

  /* ─── CTA BAND ────────────────────────────────── */
  .cta-band {
    background: linear-gradient(135deg, #0d1e3b 0%, #1a2e55 50%, #0a1628 100%);
    padding: 100px 60px;
    text-align: center;
    position: relative; overflow: hidden; isolation: isolate;
    border-top: 1px solid var(--light-border);
  }
  .cta-band-glow {
    position: absolute;
    width: 600px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(240,124,26,0.15) 0%, transparent 70%);
    bottom: -100px; left: 50%; transform: translateX(-50%);
  }
  .cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .cta-band h2 span { color: var(--orange); }
  .cta-band p {
    color: var(--gray); font-size: 1rem; margin-bottom: 40px;
    position: relative; z-index: 1;
  }
  .cta-band .actions { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ─── CONTACT ─────────────────────────────────── */
  .contact { background: var(--navy-mid); }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .contact-info { padding-top: 12px; }
  .contact-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin-bottom: 16px; }
  .contact-info p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 36px; }
  .contact-items { display: flex; flex-direction: column; gap: 20px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-item-icon {
    width: 42px; height: 42px; min-width: 42px;
    border-radius: 4px;
    background: rgba(240,124,26,0.12);
    border: 1px solid rgba(240,124,26,0.2);
    display: flex; align-items: center; justify-content: center;
  }
  .contact-item-icon svg { width: 20px; height: 20px; }
  .contact-item-text .label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 3px; }
  .contact-item-text .value { font-size: 0.9rem; color: var(--white); }

  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 14px 16px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.25s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
    background: rgba(240,124,26,0.06);
  }
  .form-group select option { background: var(--navy); }
  .form-group textarea { resize: none; }
  .form-submit {
    background: var(--orange);
    color: var(--white);
    border: none; border-radius: 4px;
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(240,124,26,0.3);
  }
  .form-submit:hover { background: var(--orange-glow); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(240,124,26,0.45); }


  .contact-page-main {
    padding-top: 0;
    background: #081a33;
    min-height: 100vh;
  }
  .contact-page-hero {
    min-height: 56vh;
    background-position: center top;
  }
  .contact-page-section {
    background: var(--navy-mid);
    padding: 40px 60px 46px;
  }
  .contact-inner-single {
    grid-template-columns: 1fr;
    max-width: 980px;
    margin: 0 auto;
  }
  .contact-page-section .contact-info {
    padding-top: 0;
  }
  .contact-page-section .contact-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .contact-page-section .contact-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 22px;
    min-height: 150px;
    gap: 18px;
  }
  .contact-page-section .contact-item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 8px;
  }
  .contact-page-section .contact-item-icon svg {
    width: 24px;
    height: 24px;
  }
  .contact-page-section .contact-item-text .label {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }
  .contact-page-section .contact-item-text .value {
    font-size: 1.02rem;
    line-height: 1.55;
  }
  .contact-page-section .contact-info p {
    max-width: 760px;
  }
  .contact-page-copy {
    margin: 0 0 24px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  .contact-page-copy h2 {
    margin: 0 0 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--white);
  }
  .contact-page-copy p {
    margin: 0;
    color: rgba(255,255,255,0.84);
    line-height: 1.75;
    font-size: clamp(0.95rem, 1.05vw, 1.07rem);
    max-width: 100%;
  }
  .not-found-main .content-page-body {
    min-height: calc(100vh - 210px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .not-found-card {
    width: min(820px, 100%);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--light-border);
    border-radius: 10px;
    padding: 44px;
  }
  .not-found-card .content-page-title {
    font-size: clamp(2.4rem, 4.6vw, 4.2rem);
    margin-bottom: 14px;
  }
  .not-found-card .content-page-sub {
    max-width: 100%;
  }
  .not-found-actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  /* Content Pages */
  .content-page-main {
    padding-top: 0;
    background: #081a33;
    min-height: 100vh;
  }
  .content-page-hero {
    position: relative;
    min-height: 62vh;
    padding: 140px 60px 76px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #07142a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .content-page-hero.contact-page-hero {
    background-position: center top;
  }
  .content-page-hero::before {
    content: none;
  }
  .content-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(108deg, rgba(6,16,31,0.48) 0%, rgba(6,16,31,0.36) 42%, rgba(6,16,31,0.24) 78%, rgba(6,16,31,0.16) 100%),
      linear-gradient(180deg, rgba(6,16,31,0.14) 0%, rgba(6,16,31,0.34) 100%);
  }
  .content-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
  }
  .content-page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.4rem, 6vw, 6.1rem);
    line-height: 0.92;
    letter-spacing: 0.035em;
    margin-bottom: 18px;
  }
  .content-page-sub {
    max-width: 840px;
    color: rgba(255,255,255,0.84);
    font-size: 1.06rem;
    line-height: 1.8;
  }
  .content-page-media {
    padding: 0 60px;
    margin-top: -52px;
    position: relative;
    z-index: 4;
  }
  .content-page-support-image {
    width: 100%;
    height: clamp(260px, 34vw, 430px);
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }
  .content-page-body {
    padding: 28px 60px 42px;
    background: linear-gradient(180deg, #132a4c 0%, #0f2342 100%);
  }
  .content-prose {
    max-width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  .content-prose h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.1vw, 3rem);
    letter-spacing: 0.04em;
    margin: 40px 0 14px;
    color: var(--white);
  }
  .content-prose h3 {
    max-width: 1240px;
    margin: 26px 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.06rem, 1.5vw, 1.3rem);
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.01em;
  }
  .content-prose p {
    max-width: 1240px;
    color: rgba(255,255,255,0.86);
    line-height: 1.92;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    margin: 0 0 20px;
  }
  .content-prose p:first-of-type {
    font-size: clamp(1.15rem, 1.4vw, 1.36rem);
    font-weight: 500;
    color: rgba(255,255,255,0.95);
  }
  .content-prose p.content-we-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.32em;
    margin: 8px 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.72;
  }
  .content-we-segment {
    display: inline-flex;
    align-items: baseline;
    gap: 0.24em;
  }
  .content-we-white {
    color: rgba(255,255,255,0.96);
  }
  .content-we-orange {
    color: var(--orange);
  }
  .content-we-blue {
    color: var(--blue-bright);
  }
  .content-prose > :first-child {
    margin-top: 0;
  }
  body[data-page-key="careers"] .content-page-body {
    padding-top: 16px;
  }
  .content-inline-image-wrap {
    margin: 16px 0 28px;
  }
  .content-inline-image {
    width: 100%;
    max-width: 1240px;
    height: clamp(220px, 31vw, 360px);
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  }
  .about-solutions-list {
    max-width: 1240px;
    margin: 20px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }
  .about-solution-item {
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  body[data-page-key="about"] .content-prose h3.about-solution-title {
    margin: 0 0 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
  }
  .about-solution-description {
    max-width: 1240px;
    color: rgba(255,255,255,0.86);
    line-height: 1.86;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    margin: 0 0 18px;
  }
  .about-solution-image {
    display: block;
    width: 100%;
    max-width: 1120px;
    aspect-ratio: 5 / 4;
    height: auto;
    max-height: min(78vh, 840px);
    object-fit: contain;
    object-position: center;
    background: transparent;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  body[data-page-key="about"] .content-inline-image {
    max-width: 1120px;
    aspect-ratio: 5 / 4;
    height: auto;
    max-height: min(78vh, 840px);
    object-fit: contain;
    object-position: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }
  @media (max-width: 640px) {
    .about-solutions-list {
      gap: 26px;
    }
    .about-solution-image {
      max-width: 100%;
    }
  }
  .content-prose ul {
    max-width: 1120px;
    margin: 0 0 26px 18px;
    color: rgba(255,255,255,0.9);
    display: grid;
    gap: 10px;
  }
  .content-prose li {
    line-height: 1.8;
    font-size: clamp(0.96rem, 1.06vw, 1.06rem);
  }
  body[data-page-key="brochures"] .content-page-hero {
    background-size: 100% 100%;
    background-position: center center;
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-links {
    max-width: 1240px;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.95);
    padding: 16px 18px 18px;
    border-left: 3px solid rgba(240,124,26,0.85);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(10,22,40,0.34) 0%, rgba(10,22,40,0.22) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 22px rgba(4,10,21,0.16);
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-title {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.96);
    line-height: 1.4;
    font-size: clamp(1.04rem, 1.14vw, 1.16rem);
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 9px 16px;
    max-width: 1240px;
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-list li {
    position: relative;
    margin: 0;
    padding: 7px 10px 7px 26px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.9);
    font-size: clamp(0.98rem, 1.06vw, 1.06rem);
    line-height: 1.45;
    transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-list li:hover,
  body[data-page-key="brochures"] .content-prose .brochure-category-list li:focus-within {
    border-color: rgba(240,124,26,0.52);
    background: rgba(240,124,26,0.08);
    transform: translateY(-1px);
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-list li::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 0 0 2px rgba(240,124,26,0.2);
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-link {
    color: rgba(255,214,173,0.98);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,184,112,0.42);
    transition: color 0.18s ease, border-bottom-color 0.18s ease;
  }
  body[data-page-key="brochures"] .content-prose .brochure-category-link:hover,
  body[data-page-key="brochures"] .content-prose .brochure-category-link:focus-visible {
    color: var(--orange);
    border-bottom-color: var(--orange);
    outline: none;
  }
  @media (max-width: 900px) {
    body[data-page-key="brochures"] .content-prose .brochure-category-list {
      grid-template-columns: 1fr;
      gap: 6px;
    }
  }

  /* Brochures Page */
  .brochures-page-main {
    padding-top: 110px;
    background: #ffffff;
    min-height: 100vh;
  }
  .brochures-page-hero {
    padding: 20px 60px 10px;
  }
  .brochures-page-hero .section-title {
    margin-bottom: 12px;
  }
  .brochures-gallery {
    padding: 0 60px 44px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .brochures-image-item {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    box-shadow: none;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10,22,40,0.14);
  }
  .brochures-image-item + .brochures-image-item {
    margin-top: 6px;
  }
  .brochures-image-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  .brochures-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    margin: 12px auto 0;
    padding: 0 20px;
    border-radius: 4px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 22px rgba(240,124,26,0.28);
  }
  .brochures-download-btn:hover {
    background: var(--orange-glow);
    transform: translateY(-1px);
    box-shadow: 0 11px 28px rgba(240,124,26,0.35);
  }

  /* ─── FOOTER ──────────────────────────────────── */
  footer {
    background: #091527;
    padding: 60px 60px 30px;
    border-top: 1px solid var(--light-border);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  .footer-brand img { height: 52px; margin-bottom: 16px; filter: drop-shadow(0 0 10px rgba(240,124,26,0.3)); }
  .footer-brand p { font-size: 0.83rem; color: var(--gray); line-height: 1.7; max-width: 240px; }
  .footer-col h5 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a { color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--light-border);
    padding-top: 28px;
    font-size: 0.78rem; color: rgba(255,255,255,0.3);
  }
  .footer-bottom a { color: var(--orange); text-decoration: none; }

  .footer-flowbite {
    margin-top: 0;
    padding: 0;
    background: linear-gradient(180deg, rgba(12,26,46,0.98) 0%, rgba(10,22,40,1) 100%);
    border-top: none;
  }
  .footer-flowbite .mx-auto { margin-left: auto; margin-right: auto; }
  .footer-flowbite .w-full { width: 100%; }
  .footer-flowbite .max-w-screen-xl { max-width: 1280px; }
  .footer-flowbite .p-4 { padding: 1rem; }
  .footer-flowbite .py-6 { padding-top: 0.9rem; padding-bottom: 1.1rem; }
  .footer-flowbite .mb-6 { margin-bottom: 0.85rem; }
  .footer-flowbite .mb-4 { margin-bottom: 1rem; }
  .footer-flowbite .me-3 { margin-right: 0.75rem; }
  .footer-flowbite .mt-4 { margin-top: 1rem; }
  .footer-flowbite .ms-5 { margin-left: 1.25rem; }
  .footer-flowbite .my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
  .footer-flowbite .flex { display: flex; }
  .footer-flowbite .items-center { align-items: center; }
  .footer-flowbite .self-center { align-self: center; }
  .footer-flowbite .whitespace-nowrap { white-space: nowrap; }
  .footer-flowbite .grid { display: grid; }
  .footer-flowbite .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-flowbite .gap-8 { gap: 2rem; }
  .footer-flowbite .h-7 { height: 4.35rem; width: auto; }
  .footer-flowbite .w-5 { width: 1.25rem; }
  .footer-flowbite .h-5 { height: 1.25rem; }
  .footer-flowbite .text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .footer-flowbite .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .footer-flowbite .font-semibold { font-weight: 600; }
  .footer-flowbite .font-medium { font-weight: 500; }
  .footer-flowbite .uppercase { text-transform: uppercase; }
  .footer-flowbite .hover\:underline:hover { text-decoration: underline; text-underline-offset: 3px; }
  .footer-flowbite .text-heading { color: rgba(255,255,255,0.95); }
  .footer-flowbite .text-body { color: rgba(214,227,247,0.8); }
  .footer-flowbite .hover\:text-heading:hover { color: var(--white); }
  .footer-flowbite .border-default { border-color: rgba(255,255,255,0.14); }
  .footer-flowbite hr {
    border-width: 0;
    border-top-width: 1px;
  }
  .footer-flowbite a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-flowbite a:hover { color: var(--orange-glow); }
  .footer-flowbite ul { list-style: none; margin: 0; padding: 0; }
  .footer-flowbite h2 {
    margin: 0 0 1rem;
    letter-spacing: 0.11em;
  }
  .footer-flowbite .footer-flowbite-tagline {
    margin-top: 0.55rem;
    max-width: 420px;
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .footer-flowbite .footer-contact-copy li {
    margin-bottom: 0.4rem;
    color: rgba(214,227,247,0.86);
    line-height: 1.5;
  }
  .footer-flowbite .footer-contact-copy li:last-child {
    margin-bottom: 0;
  }
  .footer-flowbite .footer-contact-columns {
    align-content: start;
  }
  .footer-flowbite .footer-contact-columns > div {
    min-height: 100%;
  }
  .footer-flowbite .footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
  }
  .footer-flowbite .footer-bottom-left {
    justify-self: start;
  }
  .footer-flowbite .footer-bottom-center {
    justify-self: center;
    text-align: center;
  }
  .footer-flowbite .footer-bottom-right {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
  }
  .footer-flowbite .footer-bottom-right .ms-5 {
    margin-left: 0;
  }
  .footer-flowbite .footer-legal-link {
    color: rgba(214,227,247,0.9);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .footer-flowbite .footer-legal-link:hover {
    color: var(--orange-glow);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .footer-flowbite .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;
  }
  .footer-flowbite .bi {
    font-size: 1.12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .footer-flowbite .text-body .bi,
  .footer-flowbite a .bi {
    color: rgba(214,227,247,0.86);
  }
  .footer-flowbite a:hover .bi {
    color: var(--orange-glow);
  }
  @media (min-width: 640px) {
    .footer-flowbite .sm\:mx-auto { margin-left: auto; margin-right: auto; }
    .footer-flowbite .sm\:gap-6 { gap: 1.5rem; }
    .footer-flowbite .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-flowbite .sm\:flex { display: flex; }
    .footer-flowbite .sm\:items-center { align-items: center; }
    .footer-flowbite .sm\:justify-between { justify-content: space-between; }
    .footer-flowbite .sm\:justify-center { justify-content: center; }
    .footer-flowbite .sm\:mt-0 { margin-top: 0; }
    .footer-flowbite .sm\:text-center { text-align: center; }
  }
  @media (min-width: 768px) {
    .footer-flowbite .md\:flex { display: flex; }
    .footer-flowbite .md\:justify-between { justify-content: space-between; }
    .footer-flowbite .md\:mb-0 { margin-bottom: 0; }
  }
  @media (min-width: 1024px) {
    .footer-flowbite .lg\:py-8 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
    .footer-flowbite .lg\:my-8 { margin-top: 2rem; margin-bottom: 2rem; }
    .footer-flowbite .md\:justify-between {
      align-items: center;
    }
    .footer-flowbite .footer-contact-columns {
      align-content: center;
      align-items: center;
    }
    .footer-flowbite .footer-contact-columns > div {
      display: flex;
      align-items: center;
    }
  }
  /* Footer Variant - Structured 4 Column */
  .site-footer {
    margin-top: 0;
    padding: 0;
    border-top: none;
    background: rgba(12,26,46,0.95);
    color: var(--white);
  }
  .site-footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 60px 16px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
    gap: clamp(28px, 4vw, 64px);
  }
  .site-footer-col h3,
  .site-footer-col h4 {
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--white);
  }
  .site-footer-col h4 {
    font-size: 1.16rem;
  }
  .site-footer-col p,
  .site-footer-col li {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .site-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
  }
  .site-footer-contact-list {
    gap: 8px;
  }
  .site-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .site-footer-contact-icon {
    width: 1rem;
    min-width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--orange-glow);
    font-size: 0.92rem;
    line-height: 1;
  }
  .site-footer a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .site-footer a:hover {
    color: #f79a3f;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .site-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    background: rgba(12,26,46,0.95);
    text-align: center;
    padding: 12px 20px 14px;
  }
  .site-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.84rem;
    line-height: 1.4;
  }
  .site-footer-powered {
    margin-top: 2px;
    color: rgba(222,236,255,0.9);
    font-size: 0.76rem;
  }
  .site-footer-powered a {
    color: var(--orange-glow);
    font-weight: 600;
    text-decoration: none;
  }
  .site-footer-powered a:hover {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  @media (max-width: 1024px) {
    .site-footer-main {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 22px 24px 14px;
    }
    .site-footer-col h3,
    .site-footer-col h4 {
      margin-bottom: 6px;
      font-size: 1.06rem;
    }
    .site-footer-col p,
    .site-footer-col li {
      font-size: 0.8rem;
      line-height: 1.42;
    }
    .site-footer-bottom {
      padding: 10px 12px 11px;
    }
    .site-footer-bottom p {
      font-size: 0.76rem;
    }
    .site-footer-powered {
      font-size: 0.68rem;
    }
  }
  /* Mobile Nav */
  .hamburger {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 360;
    margin-left: auto;
  }
  .hamburger span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.28s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  .hamburger span:nth-child(1) { transform: translateY(-6px); }
  .hamburger span:nth-child(2) { transform: translateY(0); }
  .hamburger span:nth-child(3) { transform: translateY(6px); }
  .hamburger.is-active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
  .hamburger.is-active span:nth-child(2) { opacity: 0; }
  .hamburger.is-active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

  .nav-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 260;
  }
  .nav-drawer-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* ─── ANIMATIONS ON SCROLL ───── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ────────────────────────────────── */
  @media (max-width: 1460px) {
    nav { padding: 16px 36px; column-gap: 24px; }
    .nav-links { gap: 34px; }
    .nav-links a { font-size: 0.98rem; }
    .nav-search-input { width: 182px; }
    .nav-right .nav-search { margin-right: 8px; }
    .hero-content { width: min(620px, 50vw); }
    .hero-prelude-floating { top: calc(156px - var(--hero-nav-offset-desktop)); padding: 0 42px; }
  }
  @media (min-width: 1400px) and (max-width: 1460px) and (max-height: 900px) {
    .hero p {
      font-size: 1.04rem;
      line-height: 1.66;
    }
  }
  @media (max-width: 1200px) {
    nav { padding: 16px 30px; }
    .nav-logo img { height: 60px; }
    .nav-links { gap: 28px; }
    .nav-links a { font-size: 0.98rem; }
    .nav-search-desktop { display: none; }
    .footer-flowbite .footer-flowbite-tagline { max-width: 100%; }
    .hero-content { width: min(560px, 50vw); }
    .hero-prelude-floating { top: calc(148px - var(--hero-nav-offset-desktop)); padding: 0 34px; }
    .hero-prelude-top { font-size: clamp(1.9rem, 5.1vw, 3.8rem); letter-spacing: 0.05em; }
    .hero-prelude-text { font-size: 0.9rem; letter-spacing: 0.08em; }
  }
  @media (max-width: 1024px) {
    nav { padding: 15px 26px; column-gap: 16px; }
    .nav-logo img { height: 54px; }
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 0.9rem; }
    .hero-content { width: min(500px, 48vw); }
    .hero-prelude-floating { top: calc(136px - var(--hero-nav-offset-tablet)); padding: 0 26px; }
    .hero-prelude-divider { gap: 10px; }
    .hero-prelude-top { font-size: clamp(1.55rem, 4.6vw, 2.8rem); margin-bottom: 8px; letter-spacing: 0.045em; }
    .hero-prelude-text { font-size: 0.76rem; }
    .hero-content { margin-top: calc(174px - var(--hero-nav-offset-tablet)); }
    .hero-actions { margin-top: 10px; --hero-actions-shift: -18px; }
    section { padding: 80px 30px; }
    .hero {
      background-image: url('../hero/tablet_hero.webp');
      margin-top: var(--hero-nav-offset-tablet);
      min-height: calc(100vh - var(--hero-nav-offset-tablet));
      padding: 120px 30px 80px;
    }
    .hero-right { width: 48%; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
    .product-card.large { grid-column: span 3; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .why-inner, .process-inner, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--light-border); padding: 24px; }
    .content-page-hero { padding: 130px 30px 62px; min-height: 54vh; }
    .content-page-media,
    .content-page-body { padding-left: 30px; padding-right: 30px; }
    .content-page-body { padding-top: 26px; padding-bottom: 38px; }
    .contact-page-section { padding: 34px 30px 38px; }
    .content-page-media { margin-top: -34px; }
    .brochures-page-hero,
    .brochures-gallery { padding-left: 30px; padding-right: 30px; }
  }
  @media (max-width: 768px) {
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      column-gap: 0;
      z-index: 300;
    }
    .nav-right {
      margin-left: auto;
      gap: 0;
    }
    .nav-search-desktop { display: none; }
    .nav-right .nav-cta { display: none; }
    .nav-logo { z-index: 340; }
    .nav-logo img { height: 48px; }
    .hamburger { display: flex; }
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      width: min(84vw, 340px);
      height: 100dvh;
      background: rgba(14,29,52,0.98);
      border-left: 1px solid var(--light-border);
      box-shadow: -20px 0 44px rgba(0,0,0,0.4);
      padding: 96px 24px 28px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 16px;
      overflow-y: auto;
      transform: translateX(100%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.32s ease, opacity 0.24s ease;
      z-index: 320;
    }
    .nav-mobile-only { display: block; }
    .nav-mobile-search-item,
    .nav-mobile-cta-item {
      margin-top: -2px;
      padding-top: 10px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-mobile-search-item {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
    }
    .nav-mobile-cta-item {
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-search-mobile {
      display: flex;
      width: 100%;
      padding: 6px 8px 6px 12px;
      gap: 8px;
      border-radius: 12px;
      margin: 0;
      background: rgba(255,255,255,0.03);
    }
    .nav-search-mobile .nav-search-input {
      width: 100%;
      font-size: 0.92rem;
    }
    .nav-search-mobile .nav-search-btn {
      padding: 8px 12px;
      font-size: 0.78rem;
    }
    .nav-search-mobile .nav-search-suggestions-panel {
      position: static;
      width: 100%;
      margin-top: 8px;
      border-radius: 8px;
      max-height: 180px;
      box-shadow: none;
      background: rgba(15,35,66,0.95);
    }
    .nav-cta-mobile {
      display: inline-flex !important;
      align-items: center;
      width: 100%;
      justify-content: center;
      margin-top: 8px;
      min-height: 52px;
      padding: 14px 16px;
      font-size: 0.92rem !important;
      font-weight: 700 !important;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-align: center;
      gap: 8px;
      border-radius: 8px;
    }
    .nav-cta-mobile span {
      line-height: 1;
      text-align: center;
    }
    body.nav-open .nav-links {
      transform: translateX(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links li {
      width: 100%;
    }
    .nav-links a {
      display: block;
      width: 100%;
      padding: 8px 0;
      font-size: 0.95rem;
      letter-spacing: 0.07em;
    }
    .nav-links a::after {
      bottom: 2px;
    }
    .nav-dropdown { width: 100%; }
    .nav-dropdown .dropdown-menu {
      position: static;
      opacity: 0;
      visibility: hidden;
      transform: none;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0 0 0 10px;
      min-width: 0;
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      transition: max-height 0.26s ease, opacity 0.2s ease, padding 0.2s ease;
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 0;
      visibility: hidden;
      transform: none;
    }
    .nav-dropdown.is-open .dropdown-menu,
    .nav-dropdown.is-open:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      max-height: 520px;
      padding: 6px 0 2px 10px;
      pointer-events: auto;
    }
    .nav-dropdown.is-open > .nav-dropdown-toggle .nav-dropdown-caret {
      transform: rotate(180deg);
    }
    .nav-dropdown .dropdown-menu a {
      font-size: 0.86rem;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.65);
      padding: 7px 0;
    }
    .dropdown-menu a:hover {
      background: transparent;
      padding-left: 0;
    }
    .hero-content { width: 100%; }
    .hero {
      background-image: url('../hero/mobile%20hero.png');
      background-size: 100% 100%;
      background-position: center;
      background-repeat: no-repeat;
      margin-top: var(--hero-nav-offset-mobile);
      min-height: calc(76vh - var(--hero-nav-offset-mobile));
    }
    .hero::before { display: none; }
    .hero-split-bg { display: none; }
    .hero-split-bg::before { display: none; }
    .hero-split-left { display: none; }
    .hero-split-right { display: none; }
    .hero-split-right::after { display: none; }
    .hero-prelude-floating { top: calc(122px - var(--hero-nav-offset-mobile)); padding: 0 18px; }
    .hero-prelude-top { font-size: clamp(1.1rem, 6.2vw, 1.9rem); letter-spacing: 0.035em; margin-bottom: 3px; }
    .hero-prelude-divider { gap: 8px; }
    .hero-prelude-text {
      white-space: normal;
      text-align: center;
      justify-content: center;
      line-height: 1.45;
      font-size: 0.63rem;
      letter-spacing: 0.06em;
      row-gap: 3px;
    }
    .hero h1.hero-main-title {
      font-size: clamp(0.82rem, 3.04vw, 1.14rem);
      padding: 10px 8px;
      gap: 0.2em;
      line-height: 1.2;
      letter-spacing: 0.042em;
      white-space: nowrap;
      text-wrap: nowrap;
      flex-wrap: nowrap;
      max-width: 100%;
      width: 100%;
      justify-content: center;
      position: relative;
      top: -16px;
    }
    .hero p {
      font-size: 0.94rem;
      line-height: 1.62;
      max-width: 100%;
      position: relative;
      top: -16px;
    }
    .hero-actions {
      gap: 14px;
      justify-content: flex-start;
      margin-top: -36px;
      --hero-actions-shift: -64px;
    }
    .hero-actions .hero-action-btn {
      width: 100%;
      min-width: 0;
      min-height: 50px;
      font-size: 1rem;
    }
    .hero-content { margin-top: calc(44px - var(--hero-nav-offset-mobile)); }
    .hero { padding: 62px 24px 18px; }
    .hero-right { display: none; }
    section { padding: 60px 24px; }
    .products-grid { grid-template-columns: 1fr; gap: 16px; }
    .product-card.large { grid-column: span 1; }
    .product-card { aspect-ratio: auto; height: clamp(220px, 58vw, 320px); margin: 0; }
    .sectors-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .why-content { order: 1; }
    .why-image-stack { order: 2; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .stats-strip { grid-template-columns: repeat(2,1fr); }
    nav { padding: 14px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band { padding: 70px 24px; }
    footer { padding: 50px 24px 24px; }
    .footer-flowbite .p-4 { padding-left: 20px; padding-right: 20px; }
    .footer-flowbite .py-6,
    .footer-flowbite .lg\:py-8 { padding-top: 1.1rem; padding-bottom: 0.95rem; }
    .footer-flowbite .grid-cols-2,
    .footer-flowbite .sm\:grid-cols-2,
    .footer-flowbite .sm\:grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-flowbite .gap-8 { gap: 1rem 1.2rem; }
    .footer-flowbite .sm\:items-center { align-items: flex-start; }
    .footer-flowbite .sm\:justify-between { justify-content: flex-start; gap: 0.75rem; }
    .footer-flowbite .sm\:text-center { text-align: left; }
    .footer-flowbite .sm\:justify-center { justify-content: flex-start; }
    .footer-flowbite .mb-6 { margin-bottom: 1.1rem; }
    .footer-flowbite .text-2xl { font-size: 1.2rem; line-height: 1.45rem; }
    .footer-flowbite .footer-flowbite-tagline {
      margin-top: 0.42rem;
      font-size: 0.88rem;
      line-height: 1.58;
    }
    .footer-flowbite h2 { margin-bottom: 0.72rem; }
    .footer-flowbite .mb-4 { margin-bottom: 0.52rem; }
    .footer-flowbite .text-sm { font-size: 0.79rem; }
    .footer-flowbite .ms-5 { margin-left: 0.95rem; }
    .footer-flowbite .bi { font-size: 1.03rem; }
    .footer-flowbite .sm\:flex {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-flowbite .sm\:mt-0 {
      margin-top: 0.4rem;
    }
    .footer-flowbite .mt-4 {
      margin-top: 0.6rem;
    }
    .footer-flowbite .footer-contact-columns {
      grid-template-columns: 1fr;
      gap: 0.85rem;
      width: 100%;
    }
    .footer-flowbite .footer-bottom-grid {
      grid-template-columns: 1fr;
      gap: 8px;
    }
    .footer-flowbite .footer-bottom-left,
    .footer-flowbite .footer-bottom-center,
    .footer-flowbite .footer-bottom-right {
      justify-self: center;
      text-align: center;
    }
    .footer-flowbite .footer-bottom-right {
      justify-content: center;
      width: 100%;
      flex-wrap: wrap;
      row-gap: 0.45rem;
    }
    .content-page-main { padding-top: 0; }
    .content-page-hero { padding: 106px 24px 42px; min-height: 50vh; }
    .contact-page-hero { background-position: center top; }
    .content-page-media,
    .content-page-body { padding-left: 24px; padding-right: 24px; }
    .content-page-body { padding-top: 22px; padding-bottom: 34px; }
    body[data-page-key="careers"] .content-page-body { padding-top: 12px; }
    .contact-page-section { padding: 28px 24px 34px; }
    .content-page-media { margin-top: -22px; }
    .content-page-support-image {
      height: 240px;
      border-radius: 4px;
    }
    .content-prose h2 { font-size: 1.8rem; margin-top: 30px; }
    .content-inline-image-wrap { margin: 12px 0 22px; }
    .content-inline-image { height: 220px; border-radius: 6px; }
    body[data-page-key="about"] .content-inline-image {
      height: auto;
      aspect-ratio: 4 / 3;
      max-width: 100%;
    }
    .brochures-page-main { padding-top: 90px; }
    .brochures-page-hero,
    .brochures-gallery { padding-left: 24px; padding-right: 24px; }
    .brochures-gallery { gap: 16px; padding-bottom: 30px; }
    .brochures-image-item { border-radius: 0; }
    .brochures-download-btn {
      width: 100%;
      min-height: 44px;
      margin-top: 10px;
      padding: 0 14px;
      font-size: 0.95rem;
    }
    .contact-page-section .contact-items { grid-template-columns: 1fr; }
    .contact-page-section .contact-item { min-height: 0; }
    .contact-page-copy {
      margin: 0 0 18px;
      padding: 0;
    }
    .contact-page-copy h2 {
      font-size: clamp(1.36rem, 7vw, 1.86rem);
      margin-bottom: 8px;
    }
    .contact-page-copy p {
      font-size: 0.92rem;
      line-height: 1.68;
    }
    .not-found-card { padding: 28px; }
  }
  @media (hover: none) and (pointer: coarse) and (max-width: 767px) {
    .hero {
      background-image: url('../hero/mobile%20hero.png') !important;
      background-size: 100% 100%;
      background-position: center;
      background-repeat: no-repeat;
    }
  }
  @media (max-width: 430px) {
    .hero h1.hero-main-title {
      font-size: clamp(0.75rem, 3.05vw, 0.99rem);
      padding: 9px 6px;
      line-height: 1.18;
      letter-spacing: 0.034em;
    }
  }
  @media (min-width: 1025px) {
    .hero .hero-actions {
      margin-top: -40px !important;
      margin-left: -42px !important;
      --hero-actions-shift: -72px;
    }
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    .hero .hero-actions {
      margin-top: 34px !important;
      margin-left: -8px !important;
      --hero-actions-shift: 12px;
    }
  }
  @media (max-width: 767px) {
    .hero .hero-actions {
      margin-top: -38px !important;
      margin-left: 0 !important;
      --hero-actions-shift: -88px;
      transform: translateY(var(--hero-actions-shift)) !important;
    }
    .hero {
      min-height: calc(72vh - var(--hero-nav-offset-mobile)) !important;
      padding: 56px 24px 12px !important;
    }
    .hero-content {
      margin-top: calc(30px - var(--hero-nav-offset-mobile)) !important;
    }
  }
  @media (min-width: 380px) and (max-width: 420px) and (min-height: 820px) and (max-height: 900px) {
    .hero .hero-actions {
      margin-top: -40px !important;
      margin-left: 0 !important;
      --hero-actions-shift: -92px;
      transform: translateY(var(--hero-actions-shift)) !important;
    }
  }
  @media (min-width: 760px) and (max-width: 820px) and (min-height: 980px) and (max-height: 1100px) {
    .hero {
      background-image: url('../hero/tablet_hero.webp') !important;
      background-size: 100% 100%;
      background-position: center;
      background-repeat: no-repeat;
    }
    .hero .hero-actions {
      margin-top: 36px !important;
      margin-left: -7px !important;
      --hero-actions-shift: 12px;
    }
  }
/* Extracted Inline Styles */
.icon-size-24 { width: 24px; height: 24px; }
.icon-size-18 { width: 18px; height: 18px; }
.design-planning-surface { background: var(--navy-mid); }
.design-planning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.design-planning-points { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.design-planning-point { display: flex; gap: 16px; align-items: flex-start; }
.design-planning-point-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 4px;
  background: rgba(240,124,26,0.12);
  border: 1px solid rgba(240,124,26,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.design-planning-point-title { font-weight: 600; margin-bottom: 6px; }
.design-planning-point-text { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.design-planning-visual { position: relative; height: 500px; border-radius: 4px; overflow: hidden; }
.full-cover-image { width: 100%; height: 100%; object-fit: cover; }
.design-planning-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.7), transparent); }
.process-visual-position { position: relative; }
.certifications-section-shell { background: var(--navy); padding: 42px 60px 30px; }
.certifications-header { text-align: center; margin-bottom: 20px; }
.certifications-label-center { justify-content: center; }
.certifications-title-size { font-size: clamp(2rem, 4vw, 3rem); }
.certificates-marquee-shell { overflow: visible; padding: 6px 0; }
.certificates-track-loop {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 20px);
  animation: none;
  width: 100%;
  align-items: center;
}
.certificates-track-loop.certificates-track-single {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  width: 100%;
  max-width: min(96vw, 1800px);
  margin: 0 auto;
}
.certificate-item-shell {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificate-logo {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 1;
  filter: none;
}
.certificate-logo--small {
  max-height: 46px;
}
.certificate-logo--large {
  max-height: 74px;
}
.certificate-logo--main {
  max-height: 310px;
  width: min(96vw, 800px);
  max-width: 100%;
}
.certifications-section-shell {
  background: #ffffff;
}
.certifications-section-shell .section-label {
  color: var(--blue);
}
.certifications-section-shell .section-label::before {
  background: var(--blue);
}
.certifications-section-shell .section-title {
  color: var(--blue-bright);
}
.certifications-section-shell .certifications-trusted-text {
  color: var(--blue-bright);
}
.certifications-section-shell .section-title .accent {
  color: var(--orange);
}

.product-card[role="link"]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Product Details Page */
.product-page-main {
  padding-top: 110px;
  background: #081a33;
}
.product-page-heading {
  padding: 12px 60px 16px;
  text-align: center;
}
.product-page-heading .section-label {
  justify-content: center;
  margin-bottom: 10px;
}
.product-page-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  text-transform: uppercase;
}
.product-page-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px auto 0;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(240,124,26,0.55);
  background: linear-gradient(140deg, rgba(240,124,26,0.2), rgba(12,40,74,0.52));
  box-shadow: 0 10px 26px rgba(240,124,26,0.2);
  color: rgba(255,255,255,0.96);
  font-size: clamp(0.84rem, 1.04vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  text-align: center;
}
.product-page-tagline::before {
  content: '\2726';
  color: var(--orange);
  font-size: 0.95em;
}
.product-page-tagline[hidden] {
  display: none !important;
}
.product-page-sub {
  margin: 14px 0 0;
  width: 100%;
  max-width: calc(100% - 148px);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.96rem, 1.16vw, 1.08rem);
  line-height: 1.68;
}
.product-hero-section {
  padding: 12px 60px 48px;
  display: block;
}
.product-long-description {
  margin-top: 20px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 0.92rem;
}
.product-actions {
  margin-top: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.product-actions .btn-primary,
.product-actions .btn-ghost {
  min-width: 240px;
  height: 54px;
  padding: 0 24px;
  justify-content: center;
}
#download-catalogue-btn {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: var(--white);
}
#download-catalogue-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.btn-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.product-brochures-section {
  padding: 0 60px 18px;
  background: transparent;
}
.product-carousel-shell {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 14px;
}
.product-carousel-viewport {
  position: relative;
  width: 100%;
  height: min(72vh, 760px);
  background: #081a33;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  overflow: hidden;
}
.product-carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  background: #081a33;
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.52s cubic-bezier(0.22, 0.72, 0.1, 1), opacity 0.52s ease;
  will-change: transform, opacity;
}
.product-carousel-image.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 3;
}
.product-carousel-image.is-enter-next {
  opacity: 0;
  transform: translateX(16%);
  z-index: 4;
}
.product-carousel-image.is-enter-prev {
  opacity: 0;
  transform: translateX(-16%);
  z-index: 4;
}
.product-carousel-image.is-leave-next {
  opacity: 0;
  transform: translateX(-16%);
  z-index: 2;
}
.product-carousel-image.is-leave-prev {
  opacity: 0;
  transform: translateX(16%);
  z-index: 2;
}
.product-carousel-control {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(8,26,51,0.84);
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product-carousel-control:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}
.product-carousel-control:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.product-carousel-thumbs {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.product-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0;
  background: rgba(214,227,247,0.5);
  box-shadow: 0 1px 5px rgba(0,0,0,0.32);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.product-carousel-dot:hover {
  transform: scale(1.12);
  background: rgba(37,117,208,0.65);
}
.product-carousel-dot.is-active {
  background: var(--orange);
  transform: scale(1.15);
}
.resource-grid {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.resource-grid.two-brochures {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.brochure-big-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: zoom-in;
}
.resource-grid.two-brochures .brochure-big-image {
  max-height: calc(100vh - 300px);
}
.resource-index {
  color: var(--orange);
  font-weight: 700;
}
.product-empty {
  color: #5f6f87;
  font-size: 0.9rem;
}
.btn-search-solution {
  background: var(--blue-bright);
  color: var(--white);
  border: 1px solid var(--blue-bright);
  border-radius: 4px;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.btn-search-solution:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.legal-pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: 'Outfit', sans-serif;
  line-height: 1.8;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.legal-prose h4 {
  max-width: 1240px;
  margin: 20px 0 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.legal-prose .legal-divider {
  border: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 26px 0;
}
.legal-prose .legal-clause strong {
  color: rgba(255,255,255,0.98);
}

.catalogue-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.catalogue-modal.is-open {
  display: block;
}
.catalogue-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.catalogue-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100% - 40px));
  max-height: 80vh;
  overflow-y: auto;
  background: #0b1930;
  border: 1px solid var(--light-border);
  border-radius: 6px;
  padding: 26px;
}
.catalogue-modal-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.catalogue-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 1.8rem;
  color: var(--gray);
  background: transparent;
  border: none;
  cursor: pointer;
}
.catalogue-modal-close:hover {
  color: var(--white);
}
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resource-list-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid var(--light-border);
  background: rgba(255,255,255,0.04);
  transition: all 0.25s ease;
}
.resource-list-link:hover {
  border-color: rgba(240,124,26,0.45);
  background: rgba(240,124,26,0.1);
}
body.modal-open {
  overflow: hidden;
}
body.nav-open {
  overflow: hidden;
}
body.mobile-search-open {
  overflow: hidden;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.34);
  z-index: 10020;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  background: #20bd5c;
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}
.whatsapp-fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,16,31,0.96);
  color: #fff;
  font-size: 0.8rem;
  padding: 7px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-fab:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.asset-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.asset-modal.is-open {
  display: block;
}
.asset-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
}
.asset-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1300px, calc(100% - 40px));
  max-height: 92vh;
  padding: 14px;
  background: rgba(6,16,31,0.92);
  border-radius: 6px;
}
.asset-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 1.8rem;
  color: var(--gray);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.asset-modal-close:hover {
  color: var(--white);
}
.asset-modal-image,
.asset-modal-video {
  display: none;
  width: 100%;
  max-height: calc(92vh - 28px);
  object-fit: contain;
}
.asset-modal-image.is-visible,
.asset-modal-video.is-visible {
  display: block;
}

@media (max-width: 1024px) {
  .product-page-heading {
    padding: 12px 30px 14px;
  }
  .product-hero-section {
    padding: 10px 30px 44px;
  }
  .product-brochures-section {
    padding: 0 30px 12px;
  }
  .product-carousel-viewport {
    height: min(68vh, 620px);
  }
}
@media (max-width: 768px) {
  .product-page-main {
    padding-top: 90px;
  }
  .product-page-heading {
    padding: 10px 14px 12px;
  }
  .product-page-title {
    font-size: clamp(1.8rem, 8.6vw, 2.6rem);
  }
  .product-page-tagline {
    margin-top: 10px;
    padding: 7px 10px;
    gap: 6px;
    font-size: clamp(0.54rem, 2.2vw, 0.62rem);
    letter-spacing: 0.015em;
    white-space: nowrap;
  }
  .product-page-sub {
    margin-top: 8px;
    font-size: 0.94rem;
    line-height: 1.58;
    max-width: none;
  }
  .product-hero-section {
    padding: 10px 24px 40px;
    gap: 24px;
  }
  .product-brochures-section {
    padding: 0 14px 10px;
  }
  .product-carousel-shell {
    display: block;
    position: relative;
  }
  .product-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 1rem;
    z-index: 5;
    border-color: rgba(255,255,255,0.45);
    background: rgba(8,26,51,0.74);
  }
  #product-carousel-prev { left: 8px; }
  #product-carousel-next { right: 8px; }
  .product-carousel-viewport {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 72vh;
  }
  .product-carousel-thumbs {
    margin-top: 12px;
    gap: 8px;
  }
  .brochure-big-image,
  .resource-grid.two-brochures .brochure-big-image {
    max-height: calc(100vh - 235px);
  }
  .product-actions .btn-primary,
  .product-actions .btn-ghost {
    min-width: 0;
    width: 100%;
  }
  .certificates-track-loop {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 8px 6px;
    justify-items: center;
  }
  .certificates-track-loop.certificates-track-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(96vw, 980px);
    gap: 0;
  }
  .certifications-section-shell {
    padding: 26px 20px 18px;
  }
  .certifications-header {
    margin-bottom: 12px;
  }
  .certificates-marquee-shell {
    padding: 2px 0;
  }
  .certificate-item-shell {
    width: 100%;
    min-height: 56px;
  }
  .certificate-logo {
    max-height: 34px;
  }
  .certificate-logo--small {
    max-height: 28px;
  }
  .certificate-logo--large {
    max-height: 42px;
  }
  .certificate-logo--main {
    max-height: 640px;
    width: min(96vw, 1800px);
  }
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}
