:root {
      --bg: #f4f2ee;
      --paper: #ffffff;
      --paper-soft: #f8f6f1;
      --ink: #172432;
      --ink-2: #26384a;
      --muted: #67717b;
      --dark: #10161b;
      --dark-2: #151d24;
      --dark-3: #202a33;
      --accent: #ff4a0a;
      --accent-2: #d93b08;
      --accent-soft: #fff0e9;
      --gold: #d8bc79;
      --line: rgba(23, 36, 50, .13);
      --line-dark: rgba(255, 255, 255, .14);
      --radius-sm: 10px;
      --radius: 18px;
      --radius-lg: 28px;
      --wrap: 1180px;
      --font: "Inter", "Noto Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background:
        linear-gradient(90deg, rgba(255, 74, 10, .035) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #fff 0%, var(--bg) 56%, #fff 100%);
      background-size: 84px 84px, auto;
      line-height: 1.62;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
    }

    body.nav-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { border: 0; cursor: pointer; }
    p, h1, h2, h3, h4 { margin-top: 0; }
    p { color: var(--muted); }
    h1, h2, h3, h4 {
      color: var(--ink);
      line-height: 1.1;
      letter-spacing: -.035em;
    }
    h1 { font-size: clamp(36px, 4.7vw, 60px); margin-bottom: 22px; }
    h2 { font-size: clamp(27px, 3.1vw, 42px); margin-bottom: 16px; }
    h3 { font-size: clamp(20px, 1.8vw, 25px); margin-bottom: 11px; }
    h4 { font-size: 18px; margin-bottom: 8px; }

    .wrap { width: min(var(--wrap), calc(100% - 42px)); margin-inline: auto; }
    .section { position: relative; padding: 90px 0; }
    .section-tight { position: relative; padding: 66px 0; }
    .lead { max-width: 760px; font-size: clamp(16px, 1.55vw, 19px); line-height: 1.72; }
    .center { text-align: center; }
    .center .lead { margin-inline: auto; }
    .grid { display: grid; gap: 20px; }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .accent-line {
      width: min(100%, var(--wrap));
      height: 8px;
      margin: 0 auto 42px;
      background: var(--accent);
      position: relative;
    }
    .accent-line::before,
    .accent-line::after {
      content: "";
      position: absolute;
      top: 0;
      width: 34px;
      height: 8px;
      background: var(--dark);
    }
    .accent-line::before { left: 0; }
    .accent-line::after { right: 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: currentColor;
    }
    .eyebrow.is-light { color: var(--accent); }

    .slash-title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 14px;
    }
    .slash-title::before {
      content: "//";
      color: var(--accent);
      font-weight: 950;
      letter-spacing: -.08em;
      font-size: 20px;
      line-height: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 49px;
      padding: 13px 21px;
      border-radius: 2px;
      border: 1px solid transparent;
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: .025em;
      transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { color: #fff; background: var(--accent); border-color: var(--accent); }
    .btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
    .btn-dark { color: #fff; background: var(--dark); border-color: var(--dark); }
    .btn-dark:hover { background: var(--dark-3); border-color: var(--dark-3); }
    .btn-light { color: var(--ink); background: #fff; border-color: #fff; }
    .btn-line { color: var(--ink); background: transparent; border-color: var(--ink); }
    .btn-line:hover { color: #fff; background: var(--dark); }
    .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--accent);
      font-weight: 950;
      letter-spacing: -.01em;
    }
    .arrow-link::after { content: "→"; transition: transform .18s ease; }
    .arrow-link:hover::after { transform: translateX(3px); }

    .topbar {
      background: var(--dark);
      color: rgba(255,255,255,.78);
      font-size: 13px;
      border-bottom: 3px solid var(--accent);
    }
    .topbar__inner {
      min-height: 43px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .topbar__left, .topbar__right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .topbar strong { color: #fff; }
    .topbar a { color: #fff; font-weight: 850; }
    .topbar a:hover { color: var(--accent); }
    .lang-switch {
      display: inline-flex;
      gap: 4px;
      padding: 3px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }
    .lang-switch a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 32px;
      min-height: 24px;
      border-radius: 999px;
      color: rgba(255,255,255,.78);
      font-size: 12px;
    }
    .lang-switch a.active { color: #fff; background: var(--accent); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
    }
    .header-inner {
      min-height: 82px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 20px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      min-width: max-content;
    }
    .logo__mark {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--dark);
      border-left: 8px solid var(--accent);
      font-size: 20px;
      font-weight: 950;
      letter-spacing: -.06em;
    }
    .logo__text { display: grid; line-height: 1.08; }
    .logo__text strong { color: var(--ink); font-size: 19px; font-weight: 950; letter-spacing: -.045em; }
    .logo__text span { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

    .desktop-nav {
      justify-self: center;
      display: flex;
      align-items: center;
      gap: 2px;
      padding: 4px;
      border: 1px solid var(--line);
      background: #fff;
    }
    .nav-link,
    .nav-button {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 12px;
      background: transparent;
      color: var(--ink-2);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      transition: background .16s ease, color .16s ease;
    }
    .nav-link:hover,
    .nav-button.active,
    .nav-item:hover .nav-button,
    .nav-item:focus-within .nav-button,
    .nav-link.active {
      color: #fff;
      background: var(--dark);
    }
    .nav-item { position: relative; display: flex; align-items: center; }
    .nav-button::after {
      content: "";
      width: 7px;
      height: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      flex: 0 0 auto;
    }
    .mega-bridge,
    .dropdown-bridge {
      position: absolute;
      top: 100%;
      left: 50%;
      padding-top: 12px;
      transform: translateX(-50%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .16s ease, visibility .16s ease;
    }
    .mega-bridge { width: min(760px, calc(100vw - 40px)); }
    .dropdown-bridge { width: 320px; }
    .nav-item:hover .mega-bridge,
    .nav-item:hover .dropdown-bridge,
    .nav-item:focus-within .mega-bridge,
    .nav-item:focus-within .dropdown-bridge,
    .mega-bridge:hover,
    .dropdown-bridge:hover {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .mega,
    .dropdown {
      border: 1px solid var(--line);
      background: var(--paper);
      overflow: hidden;
    }
    .mega {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
    }
    .mega__intro {
      padding: 24px;
      background: var(--dark);
      color: #fff;
      display: grid;
      align-content: space-between;
      gap: 22px;
      border-top: 6px solid var(--accent);
    }
    .mega__intro strong {
      display: block;
      color: var(--accent);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .mega__intro h3 { color: #fff; margin-bottom: 10px; font-size: 23px; }
    .mega__intro p { color: rgba(255,255,255,.76); margin-bottom: 0; font-size: 14px; }
    .mega__list,
    .dropdown { padding: 10px; }
    .mega__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
    .mega a,
    .dropdown a {
      min-height: 54px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 14px;
      padding: 12px 13px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 900;
    }
    .mega a::after,
    .dropdown a::after {
      content: "";
      width: 7px;
      height: 7px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
      opacity: .48;
    }
    .mega a:hover,
    .dropdown a:hover { background: var(--accent-soft); color: var(--accent-2); }
    .mega small,
    .dropdown small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      line-height: 1.35;
    }

    .header-actions {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-toggle {
      display: none;
      width: 50px;
      height: 50px;
      background: var(--dark);
      color: #fff;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      width: 22px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: transform .18s ease, opacity .18s ease;
    }
    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      position: fixed;
      inset: 0 0 auto 0;
      top: 82px;
      z-index: 90;
      max-height: calc(100svh - 82px);
      overflow-y: auto;
      background: rgba(16, 22, 27, .98);
      color: #fff;
      border-bottom: 3px solid var(--accent);
      transform: translateY(-120%);
      transition: transform .25s ease;
    }
    body.nav-open .mobile-nav { transform: translateY(0); }
    .mobile-nav__inner { padding: 18px 20px 24px; display: grid; gap: 8px; }
    .mobile-nav a,
    .mobile-summary {
      min-height: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.045);
      color: #fff;
      font-weight: 850;
    }
    .mobile-summary { list-style: none; cursor: pointer; }
    .mobile-summary::-webkit-details-marker { display: none; }
    .mobile-summary::after {
      content: "";
      width: 8px;
      height: 8px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
    }
    .mobile-nav details[open] .mobile-summary::after { transform: rotate(225deg) translate(-2px, -1px); }
    .mobile-children { display: grid; gap: 7px; padding: 8px 0 0 14px; }
    .mobile-children a { color: rgba(255,255,255,.88); background: rgba(255,255,255,.07); }
    .mobile-cta { background: var(--accent) !important; border-color: var(--accent) !important; justify-content: center !important; }

    .hero {
      position: relative;
      overflow: hidden;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }
    .hero::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 8px;
      background: var(--accent);
      z-index: 2;
    }
    .hero-grid {
      min-height: 650px;
      display: grid;
      grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
      align-items: stretch;
    }
    .hero-copy {
      padding: clamp(70px, 7vw, 110px) clamp(32px, 6vw, 70px) clamp(60px, 7vw, 96px) 0;
      display: grid;
      align-content: center;
      max-width: 690px;
    }
    .hero-copy h1 span { color: var(--accent); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }
    .hero-tags span {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      padding: 7px 11px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink-2);
      font-size: 13px;
      font-weight: 850;
    }
    .hero-visual {
      position: relative;
      min-height: 650px;
      background: var(--dark);
      display: grid;
      align-items: stretch;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 110px;
      background: var(--accent);
      z-index: 2;
    }
    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(16,22,27,.35), rgba(16,22,27,.1));
      z-index: 3;
      pointer-events: none;
    }
    .hero-visual img {
      width: 100%;
      height: 100%;
      min-height: 650px;
      object-fit: cover;
      object-position: center;
    }
    .hero-panel {
      position: absolute;
      right: clamp(24px, 5vw, 56px);
      bottom: clamp(24px, 4vw, 48px);
      z-index: 4;
      width: min(440px, calc(100% - 48px));
      background: rgba(16, 22, 27, .94);
      color: #fff;
      border-top: 8px solid var(--accent);
      padding: 26px;
    }
    .hero-panel small {
      display: block;
      color: var(--accent);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .13em;
      text-transform: uppercase;
      margin-bottom: 9px;
    }
    .hero-panel h3 { color: #fff; margin-bottom: 14px; }
    .case-list { display: grid; gap: 10px; }
    .case-item {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      padding-top: 10px;
      border-top: 1px solid rgba(255,255,255,.14);
    }
    .case-num {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--accent);
      font-weight: 950;
      font-size: 13px;
    }
    .case-item strong { display: block; color: #fff; margin-bottom: 2px; }
    .case-item span { color: rgba(255,255,255,.68); font-size: 14px; }

    .authority-strip {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .authority-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .authority-item {
      min-height: 178px;
      padding: 28px 25px;
      border-left: 1px solid rgba(255,255,255,.12);
      color: #fff;
      background: var(--dark);
      display: grid;
      align-content: space-between;
      gap: 20px;
      position: relative;
      overflow: hidden;
    }
    .authority-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 54px;
      height: 6px;
      background: var(--accent);
    }
    .authority-item:nth-child(even) { background: var(--dark-2); }
    .authority-item:last-child { border-right: 1px solid rgba(255,255,255,.12); }
    .authority-item small { color: var(--accent); font-size: 12px; font-weight: 950; letter-spacing: .14em; }
    .authority-item h3 { color: #fff; margin-bottom: 0; font-size: 23px; }
    .authority-item a { color: #fff; font-size: 14px; font-weight: 950; }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 56px;
      align-items: center;
    }
    .split.reverse { grid-template-columns: 1.05fr .95fr; }
    .media-card {
      position: relative;
      min-height: 560px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--paper);
    }
    .media-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 76px;
      background: var(--accent);
      z-index: 2;
    }
    .media-card img { width: 100%; height: 560px; object-fit: cover; object-position: center; }
    .media-card__label {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      padding: 20px;
      background: #fff;
      border-left: 6px solid var(--accent);
      z-index: 3;
    }
    .media-card__label strong { display: block; margin-bottom: 6px; color: var(--ink); font-size: 18px; }
    .media-card__label span { color: var(--muted); font-size: 14px; font-weight: 650; }
    .text-stack { display: grid; gap: 14px; }
    .value-list { display: grid; gap: 12px; margin-top: 26px; }
    .value-row {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 14px;
      align-items: start;
      padding: 17px;
      border: 1px solid var(--line);
      background: var(--paper);
      border-left: 4px solid var(--accent);
    }
    .value-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: var(--dark);
      color: #fff;
      font-weight: 950;
    }
    .value-row strong { display: block; color: var(--ink); margin-bottom: 3px; }
    .value-row span { color: var(--muted); font-size: 14px; }

    .services-section {
      background: var(--paper-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
    }
    .section-head > div:first-child { max-width: 800px; }
    .service-card {
      position: relative;
      min-height: 284px;
      padding: 26px;
      border: 1px solid var(--line);
      border-top: 7px solid var(--accent);
      background: #fff;
      overflow: hidden;
      display: grid;
      align-content: space-between;
      gap: 22px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .service-card::after {
      content: "";
      position: absolute;
      right: -34px;
      bottom: -34px;
      width: 88px;
      height: 88px;
      border: 14px solid var(--accent-soft);
      transform: rotate(45deg);
      pointer-events: none;
    }
    .service-card:hover { transform: translateY(-4px); border-color: rgba(255,74,10,.45); }
    .service-card__top { display: grid; gap: 12px; position: relative; z-index: 2; }
    .service-card__num {
      display: inline-flex;
      width: max-content;
      color: var(--accent);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .14em;
    }
    .service-card h3 { margin-bottom: 0; }
    .service-card p { margin-bottom: 0; }
    .service-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
      position: relative;
      z-index: 2;
    }
    .service-card li {
      display: flex;
      gap: 9px;
      color: var(--muted);
      font-size: 14px;
    }
    .service-card li::before {
      content: "";
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      margin-top: 9px;
      background: var(--accent);
    }

    .business-panel {
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--dark);
      color: #fff;
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      position: relative;
    }
    .business-panel::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 8px;
      background: var(--accent);
    }
    .business-copy {
      padding: clamp(34px, 5vw, 56px);
      display: grid;
      align-content: center;
    }
    .business-copy h2 { color: #fff; }
    .business-copy p { color: rgba(255,255,255,.76); }
    .business-copy .eyebrow { color: var(--accent); }
    .business-list {
      padding: clamp(24px, 4vw, 38px);
      background: rgba(255,255,255,.055);
      display: grid;
      gap: 12px;
    }
    .business-item {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 14px;
      align-items: start;
      padding: 17px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      border-left: 4px solid var(--accent);
    }
    .business-item b {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--accent);
      font-size: 17px;
    }
    .business-item strong { display: block; color: #fff; margin-bottom: 3px; }
    .business-item span { color: rgba(255,255,255,.68); font-size: 14px; }

    .legal-forms { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
    .legal-forms a {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 16px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink-2);
      font-weight: 900;
    }
    .legal-forms a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

    .programs {
      background:
        linear-gradient(90deg, rgba(16,22,27,.96), rgba(16,22,27,.78)),
        url("assets/logistiko-meeting.jpg") center / cover no-repeat;
      color: #fff;
      border-top: 8px solid var(--accent);
    }
    .programs h2, .programs h3 { color: #fff; }
    .programs p { color: rgba(255,255,255,.74); }
    .programs .eyebrow { color: var(--accent); }
    .program-card {
      min-height: 255px;
      padding: 28px;
      border: 1px solid rgba(255,255,255,.14);
      border-top: 6px solid var(--accent);
      background: rgba(255,255,255,.065);
      display: grid;
      align-content: space-between;
      gap: 26px;
    }
    .program-card b { display: block; color: var(--accent); font-size: 37px; line-height: 1; letter-spacing: -.07em; }
    .program-card a { color: #fff; }

    .sectors-layout {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 34px;
      align-items: start;
    }
    .sectors-intro {
      position: sticky;
      top: 114px;
      padding: 34px;
      border: 1px solid var(--line);
      border-top: 8px solid var(--accent);
      background: var(--paper);
    }
    .sector-accordion { display: grid; gap: 10px; }
    .sector-item {
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
    }
    .sector-question {
      width: 100%;
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 20px;
      background: transparent;
      color: var(--ink);
      text-align: left;
      font-weight: 950;
    }
    .sector-question span { color: var(--accent); margin-right: 10px; }
    .sector-question::after {
      content: "+";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: #fff;
      background: var(--dark);
    }
    .sector-item.open { border-color: rgba(255,74,10,.35); }
    .sector-item.open .sector-question::after { content: "−"; background: var(--accent); }
    .sector-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
    .sector-answer p { padding: 0 20px 20px; margin-bottom: 0; }
    .sector-item.open .sector-answer { max-height: 180px; }

    .process {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 42px;
      align-items: start;
    }
    .process-box {
      position: sticky;
      top: 114px;
      padding: 34px;
      background: var(--dark);
      color: #fff;
      border-top: 8px solid var(--accent);
    }
    .process-box h2 { color: #fff; }
    .process-box p { color: rgba(255,255,255,.75); }
    .process-box .eyebrow { color: var(--accent); }
    .steps { display: grid; gap: 14px; }
    .step {
      display: grid;
      grid-template-columns: 68px 1fr;
      gap: 20px;
      padding: 24px;
      border: 1px solid var(--line);
      background: #fff;
      border-left: 6px solid var(--accent);
    }
    .step b {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--dark);
      font-size: 20px;
      letter-spacing: -.04em;
    }
    .step p { margin-bottom: 0; }

    .news-section { background: var(--paper-soft); border-block: 1px solid var(--line); }
    .news-card {
      min-height: 236px;
      padding: 24px;
      border: 1px solid var(--line);
      border-top: 6px solid var(--accent);
      background: #fff;
      display: grid;
      align-content: space-between;
      gap: 24px;
    }
    .news-card small {
      display: block;
      color: var(--accent);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .news-card h3 { font-size: 23px; }
    .news-card p { margin-bottom: 0; }

    .contact {
      background: var(--dark);
      color: #fff;
      border-top: 8px solid var(--accent);
    }
    .contact h2, .contact h3 { color: #fff; }
    .contact p { color: rgba(255,255,255,.76); }
    .contact .eyebrow { color: var(--accent); }
    .contact-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 34px;
      align-items: start;
    }
    .contact-info {
      padding: 34px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.055);
    }
    .contact-list { display: grid; gap: 12px; margin-top: 24px; }
    .contact-list a, .contact-list div {
      display: grid;
      gap: 4px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      border-left: 4px solid var(--accent);
    }
    .contact-list small { color: var(--accent); font-size: 11px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
    .contact-list strong { color: #fff; }
    .form-card {
      padding: 28px;
      border: 1px solid rgba(255,255,255,.35);
      background: #fff;
    }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: var(--ink); font-size: 13px; font-weight: 900; }
    .field input, .field select, .field textarea {
      width: 100%;
      border: 1px solid rgba(13,38,48,.22);
      border-radius: 0;
      padding: 13px 14px;
      background: #fff;
      color: var(--ink);
      outline: 0;
    }
    .field textarea { min-height: 130px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
    .form-card .btn { width: 100%; margin-top: 14px; }
    .form-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; }

    .footer {
      padding: 60px 0 24px;
      background: #0b1116;
      color: rgba(255,255,255,.7);
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-badges {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      padding-bottom: 46px;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .footer-badge {
      min-height: 116px;
      display: grid;
      place-items: center;
      text-align: center;
      color: #fff;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.035);
    }
    .footer-badge strong {
      display: block;
      color: var(--accent);
      font-size: clamp(35px, 4vw, 54px);
      line-height: 1;
      letter-spacing: -.07em;
      margin-bottom: 7px;
    }
    .footer-badge span {
      color: rgba(255,255,255,.72);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: 12px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.1fr .85fr .85fr .85fr .95fr; gap: 28px; }
    .footer .logo__text strong { color: #fff; }
    .footer h3 { color: #fff; font-size: 18px; margin-bottom: 16px; }
    .footer h3::before { content: "//"; color: var(--accent); margin-right: 2px; }
    .footer p, .footer a, .footer span { color: rgba(255,255,255,.7); }
    .footer a:hover { color: #fff; }
    .footer-links { display: grid; gap: 8px; }
    .footer-bottom {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.55);
      font-size: 13px;
    }

    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1180px) {
      .desktop-nav { display: none; }
      .header-inner { display: flex; justify-content: space-between; }
      .header-actions .btn { display: none; }
      .nav-toggle { display: inline-flex; }
      .hero-grid, .split, .split.reverse, .business-panel, .sectors-layout, .process, .contact-grid { grid-template-columns: 1fr; }
      .hero-copy { padding-left: 0; }
      .hero-visual { min-height: 540px; }
      .hero-visual img { min-height: 540px; }
      .sectors-intro, .process-box { position: static; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 860px) {
      .topbar { display: none; }
      .site-header { top: 0; }
      .header-inner { min-height: 76px; }
      .mobile-nav { top: 76px; max-height: calc(100svh - 76px); }
      .hero::before { display: none; }
      .hero-grid { min-height: auto; }
      .hero-copy { padding: 64px 0 48px; }
      .hero-visual { min-height: 430px; }
      .hero-visual::before { width: 48px; }
      .hero-visual img { min-height: 430px; }
      .hero-panel { position: relative; right: auto; bottom: auto; width: auto; margin: -70px 20px 28px; }
      .authority-grid, .grid-2, .grid-3, .grid-4, .footer-badges { grid-template-columns: 1fr; }
      .authority-item { min-height: auto; border-right: 1px solid rgba(255,255,255,.12); }
      .section { padding: 70px 0; }
      .section-tight { padding: 54px 0; }
      .section-head { display: block; }
      .section-head .btn { margin-top: 18px; }
      .media-card, .media-card img { min-height: 420px; height: 420px; }
      .form-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 540px) {
      .wrap { width: min(100% - 28px, var(--wrap)); }
      h1 { font-size: clamp(34px, 10vw, 46px); }
      h2 { font-size: clamp(25px, 8vw, 34px); }
      .logo__mark { width: 46px; height: 46px; }
      .logo__text strong { font-size: 17px; }
      .logo__text span { font-size: 10px; }
      .hero-actions .btn { width: 100%; }
      .hero-visual::before { width: 28px; }
      .hero-panel, .contact-info, .form-card, .process-box, .sectors-intro { padding: 22px; }
      .case-item, .business-item, .value-row, .step { grid-template-columns: 1fr; }
      .business-copy, .business-list { padding: 24px; }
      .footer-bottom { display: grid; }
    }
