    :root {
      --bg: #070707;
      --bg-soft: #0f0f0f;
      --panel: #141414;
      --panel-2: #1a1a1a;
      --line: #2e2e2e;
      --text: #f8f8f8;
      --muted: #b3b3b3;
      --accent: #ff2121;
      --accent-2: #d80f0f;
      --brand-blue: #0c2f93;
      --radius: 18px;
      --max: 1200px;
      --shadow: 0 20px 45px rgba(0, 0, 0, 0.33);
    }

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

    html,
    body {
      overflow-x: hidden;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 11% 8%, rgba(255, 25, 25, 0.16), transparent 37%),
        radial-gradient(circle at 89% 2%, rgba(12, 47, 147, 0.19), transparent 35%),
        linear-gradient(180deg, #070707 0%, #090909 100%);
      line-height: 1.5;
      padding-top: 78px;
    }

    html [data-locale-content] {
      display: none !important;
    }

    html[lang="en"] [data-locale-content="en"],
    html[lang="it"] [data-locale-content="it"] {
      display: block !important;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(var(--max), calc(100% - 2.4rem));
      margin-inline: auto;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 40;
      background: rgba(7, 7, 7, 0.82);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(9px);
      transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, padding-bottom 220ms ease;
      will-change: transform;
    }

    .topbar.topbar-hidden {
      transform: translateY(calc(-100% - 2px));
    }

    .topbar.topbar-compact {
      background: rgba(7, 7, 7, 0.9);
      border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: min-height 220ms ease;
    }

    .topbar.topbar-compact .nav {
      min-height: 66px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
    }

    .brand img {
      width: min(260px, 44vw);
      height: auto;
      display: block;
    }

    .menu-toggle {
      display: none;
      width: 2.75rem;
      height: 2.75rem;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.28rem;
      border: 1px solid #444;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      color: #ffffff;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 1.18rem;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .topbar.menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(0.38rem) rotate(45deg);
    }

    .topbar.menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .topbar.menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-0.38rem) rotate(-45deg);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 1.35rem;
      color: #d3d3d3;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 0.18rem;
      margin-left: 0.65rem;
      border: 1px solid #3f3f3f;
      border-radius: 999px;
      padding: 0.14rem;
      background: rgba(255, 255, 255, 0.04);
    }

    .lang-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.2rem;
      height: 1.7rem;
      border-radius: 999px;
      font-size: 0.74rem;
      letter-spacing: 0.04em;
      color: #cfcfcf;
      font-weight: 700;
    }

    .lang-link:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
    }

    .lang-link.is-active {
      color: #ffffff;
      background: rgba(255, 33, 33, 0.95);
    }

    .menu a:hover {
      color: #ffffff;
    }

    .menu .menu-dropdown {
      position: relative;
    }

    .menu .menu-dropdown summary {
      list-style: none;
      cursor: pointer;
      color: #d3d3d3;
      font-size: 0.95rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .menu .menu-dropdown summary:hover {
      color: #ffffff;
    }

    .menu .menu-dropdown summary::-webkit-details-marker {
      display: none;
    }

    .menu .menu-dropdown[open] summary {
      color: #ffffff;
    }

    .menu .menu-dropdown.is-current summary {
      color: #ffffff;
      border: 0;
      border-bottom: 1px solid currentColor;
      border-bottom-color: #c1121f;
      border-radius: 0;
      padding: 0 0 0.12rem;
      background: transparent;
      font-weight: 700;
    }

    .menu .menu-dropdown.is-current summary:hover {
      color: #ffffff;
    }

    .menu .menu-dropdown summary::after {
      content: "▾";
      font-size: 0.72rem;
      opacity: 0.85;
      transition: transform 160ms ease;
    }

    .menu .menu-dropdown[open] summary::after {
      transform: rotate(180deg);
    }

    .menu-dropdown-panel {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 290px;
      height: auto;
      border: 1px solid #3f3f3f;
      border-radius: 14px;
      background: #121212;
      box-shadow: var(--shadow);
      padding: 0.45rem;
      display: grid;
      gap: 0.25rem;
      z-index: 80;
    }

    .menu-dropdown-panel a,
    .menu-dropdown-panel .menu-dropdown-current {
      display: block;
      border-radius: 10px;
      padding: 0.46rem 0.62rem;
      font-size: 0.86rem;
    }

    .menu-dropdown-panel a {
      color: #d5d5d5;
    }

    .menu-dropdown-panel a:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
    }

    .menu-dropdown-panel .menu-dropdown-current {
      color: #ffffff;
      border: 0;
      border-bottom: 1px solid currentColor;
      border-bottom-color: #c1121f;
      border-radius: 0;
      background: transparent;
      font-weight: 700;
      cursor: default;
    }

    @media (min-width: 761px) {
      .topbar.service-menu-open {
        padding-bottom: 6.2rem;
      }

      .menu .menu-dropdown {
        position: relative;
      }

      .menu-dropdown-panel {
        top: calc(100% + 0.45rem);
        left: 0;
        width: min(360px, calc(100vw - 2.4rem));
        min-width: 0;
        min-height: 0;
        transform: none;
        grid-template-columns: 1fr;
        align-items: start;
        justify-items: start;
        gap: 0.12rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        padding: 0.58rem 0 0.85rem;
      }

      .menu-dropdown-panel a,
      .menu-dropdown-panel .menu-dropdown-current {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 0;
        padding: 0.18rem 0;
        text-align: left;
        white-space: normal;
      }

      .menu-dropdown-panel .menu-dropdown-current {
        border: 0;
        border-bottom: 1px solid currentColor;
        border-bottom-color: #c1121f;
        background: transparent;
      }
    }

    .menu .menu-current {
      color: #ffffff;
      border: 0;
      border-bottom: 1px solid currentColor;
      border-bottom-color: #c1121f;
      border-radius: 0;
      padding: 0 0 0.12rem;
      background: transparent;
      font-weight: 700;
      cursor: default;
    }

    .service-context {
      padding-top: 1rem;
    }

    .service-context-nav {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      flex-wrap: wrap;
      color: #cfcfcf;
      font-size: 0.86rem;
    }

    .service-context-nav a {
      border: 1px solid #3f3f3f;
      border-radius: 999px;
      padding: 0.3rem 0.62rem;
      background: rgba(255, 255, 255, 0.03);
    }

    .service-context-nav a:hover {
      border-color: #5a5a5a;
      color: #ffffff;
    }

    .service-context-nav span {
      border: 1px solid #5d5d5d;
      border-radius: 999px;
      padding: 0.3rem 0.62rem;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
      font-weight: 700;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.94rem;
      font-weight: 700;
      padding: 0.75rem 1.15rem;
      transition: 180ms ease;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent);
      color: #ffffff;
    }

    .btn-primary:hover {
      background: var(--accent-2);
    }

    .btn-ghost {
      border-color: #3e3e3e;
      color: #ededed;
      background: rgba(255, 255, 255, 0.03);
    }

    .btn-ghost:hover {
      border-color: #5a5a5a;
      color: #ffffff;
    }

    .hero {
      position: relative;
      padding: 5.1rem 0 4rem;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(103deg, rgba(7, 7, 7, 0.96) 32%, rgba(7, 7, 7, 0.58) 100%),
        url("../images/hero/home-hero.jpg") center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 48vw;
      aspect-ratio: 1;
      right: -12vw;
      bottom: -28vw;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255, 27, 27, 0.2), transparent 64%);
      filter: blur(9px);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
      align-items: end;
    }

    .hero-copy {
      max-width: min(920px, 100%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.78rem;
      color: #d9d9d9;
      margin-bottom: 1.1rem;
      font-weight: 800;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 16px rgba(255, 29, 29, 0.8);
      flex: 0 0 auto;
    }

    .eyebrow-text {
      display: inline;
    }

    .hero h1 {
      font-family: "Sora", sans-serif;
      font-size: clamp(2rem, 4.4vw, 4rem);
      line-height: 1.03;
      max-width: 19ch;
      letter-spacing: -0.02em;
    }

    .hero p {
      margin-top: 1.15rem;
      color: #dfdfdf;
      max-width: 72ch;
      font-size: 1.02rem;
    }

    .hero-actions {
      margin-top: 1.6rem;
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .hero-panel {
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: linear-gradient(160deg, rgba(20, 20, 20, 0.92) 0%, rgba(16, 16, 16, 0.84) 100%);
      box-shadow: var(--shadow);
      padding: 1.3rem;
      display: grid;
      gap: 0.9rem;
    }

    .hero-panel h2 {
      font-family: "Sora", sans-serif;
      font-size: 1.08rem;
      margin-bottom: 0.15rem;
    }

    .hero-chip {
      border: 1px solid #3b3b3b;
      border-radius: 999px;
      width: fit-content;
      padding: 0.35rem 0.75rem;
      color: #ececec;
      font-size: 0.8rem;
      letter-spacing: 0.03em;
      background: rgba(255, 255, 255, 0.04);
    }

    .hero-list {
      display: grid;
      gap: 0.65rem;
    }

    .hero-item {
      border: 1px solid #333333;
      border-radius: 12px;
      padding: 0.85rem;
      background: rgba(255, 255, 255, 0.02);
    }

    .hero-item strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 0.22rem;
    }

    .hero-item span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    section {
      padding: 4.35rem 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .section-head h2 {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.42rem, 2.8vw, 2.2rem);
      line-height: 1.1;
      letter-spacing: -0.015em;
      max-width: 18ch;
    }

    .section-head p {
      max-width: 58ch;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .ai-priority {
      padding-top: 0.6rem;
    }

    .ai-focus {
      border: 1px solid #343434;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(12, 12, 12, 0.92) 100%);
      padding: 1.4rem;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1rem;
    }

    .ai-focus h2 {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.25rem, 2.3vw, 1.8rem);
      line-height: 1.16;
      margin-bottom: 0.5rem;
    }

    .ai-focus p {
      color: #d3d3d3;
      max-width: 62ch;
      font-size: 0.94rem;
    }

    .ai-priority-actions {
      display: grid;
      gap: 0.7rem;
      align-content: center;
      justify-items: start;
    }

    .pressure-section {
      padding-top: 3.4rem;
    }

    .pressure-grid {
      counter-reset: pressure;
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pressure-card {
      counter-increment: pressure;
      border: 1px solid #303030;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(21, 21, 21, 0.78), rgba(12, 12, 12, 0.94));
      padding: 1.05rem;
      min-height: 220px;
      display: grid;
      align-content: start;
      gap: 0.68rem;
      position: relative;
      overflow: hidden;
    }

    .pressure-card::before {
      content: counter(pressure, decimal-leading-zero);
      font-family: "Sora", sans-serif;
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 1;
    }

    .pressure-card strong {
      font-family: "Sora", sans-serif;
      font-size: 0.98rem;
      line-height: 1.26;
    }

    .pressure-card p {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .offering-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(24, 24, 24, 0.74) 0%, rgba(14, 14, 14, 0.95) 100%);
      padding: 1rem;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.9rem;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .card:hover {
      border-color: #575757;
    }

    .offering-grid .card::before {
      content: "";
      display: block;
      width: 100%;
      height: 112px;
      border-radius: 12px;
      border: 1px solid #3a3a3a;
      background-size: cover;
      background-position: center;
    }

    .offering-grid .card:nth-child(1)::before {
      background-image: url("../images/unsplash/1517148815978-75f6acaaf32c.jpg");
    }

    .offering-grid .card:nth-child(2)::before {
      background-image: url("../images/unsplash/1532622785990-d2c36a76f5a6.jpg");
    }

    .offering-grid .card:nth-child(3)::before {
      background-image: url("../images/unsplash/1743834147172-37c12011b321.jpg");
    }

    .offering-grid .card:nth-child(4)::before {
      background-image: url("../images/unsplash/1563986768609-322da13575f3.jpg");
    }

    .offering-grid .card:nth-child(5)::before {
      background-image: url("../images/unsplash/1557804506-669a67965ba0.jpg");
    }

    .offering-grid .card:nth-child(6)::before {
      background-image: url("../images/unsplash/1558494949-ef010cbdcc31.jpg");
    }

    .offering-grid .card:nth-child(7)::before {
      background-image: url("../images/unsplash/1560472354-b33ff0c44a43.jpg");
    }

    .offering-grid .card:nth-child(8)::before {
      background-image: url("../images/unsplash/1562564055-71e051d33c19.jpg");
    }

    .offering-grid .card:nth-child(9)::before {
      background-image: url("../images/unsplash/1563013544-824ae1b704d3.jpg");
    }

    .offering-grid .card:nth-child(10)::before {
      background-image: url("../images/unsplash/1573497491208-6b1acb260507.jpg");
    }

    .offering-grid .card:nth-child(11)::before {
      background-image: url("../images/unsplash/1589829085413-56de8ae18c73.jpg");
    }

    .offering-grid .card:nth-child(12)::before {
      background-image: url("../images/unsplash/1614064641938-3bbee52942c7.jpg");
    }

    .card h3 {
      font-family: "Sora", sans-serif;
      font-size: 1.04rem;
      line-height: 1.28;
      margin-bottom: 0.45rem;
    }

    .card p {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .card a {
      color: #f5d7d7;
      font-size: 0.88rem;
      font-weight: 700;
    }

    .card a:hover {
      color: #ffffff;
    }

    .pillars {
      background: rgba(255, 255, 255, 0.02);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pillar-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-items: stretch;
    }

    .pillar-media {
      border: 1px solid #343434;
      border-radius: var(--radius);
      min-height: 360px;
      box-shadow: var(--shadow);
      background:
        linear-gradient(145deg, rgba(6, 6, 6, 0.68), rgba(10, 10, 10, 0.24)),
        url("../images/unsplash/1521737604893-d14cc237f11d.jpg") center/cover no-repeat;
      display: flex;
      align-items: end;
      padding: 1rem;
    }

    .pillar-media span {
      display: inline-flex;
      border-radius: 999px;
      border: 1px solid #4b4b4b;
      background: rgba(0, 0, 0, 0.55);
      padding: 0.35rem 0.7rem;
      font-size: 0.8rem;
      color: #ececec;
    }

    .pillar-panel {
      border: 1px solid #303030;
      border-radius: var(--radius);
      background: linear-gradient(180deg, #161616 0%, #101010 100%);
      padding: 1rem;
      display: grid;
      gap: 0.8rem;
      align-content: start;
    }

    .pillar-item {
      border: 1px solid #363636;
      border-radius: 12px;
      padding: 0.92rem;
      background: rgba(255, 255, 255, 0.02);
    }

    .pillar-item strong {
      display: block;
      font-family: "Sora", sans-serif;
      font-size: 1rem;
      margin-bottom: 0.28rem;
    }

    .pillar-item p {
      color: var(--muted);
      font-size: 0.89rem;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .why-card {
      border: 1px solid #303030;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(12, 12, 12, 0.95));
      padding: 1.2rem;
      display: grid;
      gap: 0.75rem;
      align-content: start;
    }

    .why-card::before {
      content: "";
      display: block;
      height: 126px;
      border-radius: 12px;
      border: 1px solid #3b3b3b;
      background-size: cover;
      background-position: center;
    }

    #support-capabilities .why-grid .why-card:nth-child(1)::before {
      background-image: url("../images/unsplash/1552664730-d307ca884978.jpg");
    }

    #support-capabilities .why-grid .why-card:nth-child(2)::before {
      background-image: url("../images/unsplash/1515879218367-8466d910aaa4.jpg");
    }

    #support-capabilities .why-grid .why-card:nth-child(3)::before {
      background-image: url("../images/unsplash/1531498860502-7c67cf02f657.jpg");
    }

    #why .why-grid .why-card:nth-child(1)::before {
      background-image: url("../images/unsplash/1520607162513-77705c0f0d4a.jpg");
    }

    #why .why-grid .why-card:nth-child(2)::before {
      background-image: url("../images/unsplash/1498050108023-c5249f4df085.jpg");
    }

    #why .why-grid .why-card:nth-child(3)::before {
      background-image: url("../images/unsplash/1519389950473-47ba0277781c.jpg");
    }

    .why-card strong {
      display: block;
      font-family: "Sora", sans-serif;
      margin-bottom: 0.45rem;
      font-size: 1rem;
    }

    .why-card p {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .cta {
      padding: 3.7rem 0 4.2rem;
    }

    .cta-box {
      position: relative;
      border-radius: 24px;
      border: 1px solid #454545;
      background:
        radial-gradient(circle at 16% 25%, rgba(255, 30, 30, 0.2), transparent 38%),
        linear-gradient(108deg, #171717 0%, #0f0f0f 68%);
      padding: 2rem;
      overflow: hidden;
    }

    .cta-box::after {
      content: "";
      position: absolute;
      right: -8%;
      bottom: -120px;
      width: 270px;
      height: 270px;
      border-radius: 50%;
      background: rgba(255, 34, 34, 0.2);
      filter: blur(26px);
      pointer-events: none;
    }

    .cta-box h2 {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.46rem, 2.9vw, 2.24rem);
      line-height: 1.15;
      max-width: 22ch;
      margin-bottom: 0.8rem;
    }

    .cta-box p {
      max-width: 60ch;
      color: #d7d7d7;
      margin-bottom: 1.2rem;
    }

    .contact-hub {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-panel {
      border: 1px solid #3a3a3a;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(19, 19, 19, 0.9), rgba(11, 11, 11, 0.94));
      padding: 1.25rem;
      box-shadow: var(--shadow);
    }

    .form-panel h3 {
      font-family: "Sora", sans-serif;
      font-size: 1.1rem;
      margin-bottom: 0.35rem;
    }

    .form-panel p {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 0.9rem;
    }

    .lead-form {
      display: grid;
      gap: 0.75rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.65rem;
    }

    .field {
      display: grid;
      gap: 0.32rem;
    }

    .field label {
      font-size: 0.82rem;
      color: #dddddd;
      font-weight: 600;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border-radius: 12px;
      border: 1px solid #3e3e3e;
      background: rgba(255, 255, 255, 0.02);
      color: #f2f2f2;
      padding: 0.66rem 0.75rem;
      font-family: inherit;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    .field textarea {
      min-height: 120px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: #7a7a7a;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
    }

    .field input[type="file"] {
      padding: 0.52rem 0.6rem;
      background: rgba(255, 255, 255, 0.01);
    }

    .check-field {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 0.84rem;
      color: #d0d0d0;
    }

    .check-field input {
      margin-top: 0.2rem;
    }

    .form-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.2rem;
    }

    .form-note {
      color: #a8a8a8;
      font-size: 0.78rem;
    }

    .btn:disabled,
    .btn[aria-disabled="true"] {
      opacity: 0.65;
      cursor: not-allowed;
      transform: none;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .cookie-consent {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 120;
    }

    .cookie-consent-inner {
      width: min(1060px, 100%);
      margin-inline: auto;
      border: 1px solid #3f3f3f;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98));
      box-shadow: var(--shadow);
      padding: 1rem 1.1rem;
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 1rem;
      align-items: center;
    }

    .cookie-consent-copy h2 {
      font-family: "Sora", sans-serif;
      font-size: 1rem;
      margin-bottom: 0.35rem;
    }

    .cookie-consent-copy p {
      color: #d4d4d4;
      font-size: 0.88rem;
    }

    .cookie-consent-note {
      margin-top: 0.35rem;
      color: #afafaf;
      font-size: 0.8rem;
    }

    .cookie-consent-note a {
      color: #f0caca;
      text-decoration: underline;
      text-underline-offset: 0.14em;
    }

    .cookie-consent-note a:hover {
      color: #ffffff;
    }

    .cookie-consent-actions {
      display: grid;
      gap: 0.55rem;
      justify-items: stretch;
    }

    .cookie-modal {
      position: fixed;
      inset: 0;
      z-index: 130;
      display: grid;
      place-items: center;
      padding: 1rem;
    }

    .cookie-modal[hidden] {
      display: none;
    }

    .cookie-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 5, 5, 0.66);
    }

    .cookie-modal-card {
      position: relative;
      z-index: 1;
      width: min(620px, 100%);
      border: 1px solid #3c3c3c;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(12, 12, 12, 0.98));
      box-shadow: var(--shadow);
      padding: 1.15rem;
      display: grid;
      gap: 0.9rem;
    }

    .cookie-modal-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      width: 2rem;
      height: 2rem;
      display: inline-grid;
      place-items: center;
      border: 1px solid #3c3c3c;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: #ffffff;
      font: 800 0.8rem/1 "Manrope", sans-serif;
      cursor: pointer;
      transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
    }

    .cookie-modal-close:hover {
      border-color: #ffffff;
      background: rgba(255, 255, 255, 0.12);
    }

    .cookie-modal-card h2 {
      font-family: "Sora", sans-serif;
      font-size: 1.12rem;
      padding-right: 2.4rem;
    }

    .cookie-modal-intro {
      color: #d2d2d2;
      font-size: 0.88rem;
    }

    .cookie-options {
      display: grid;
      gap: 0.5rem;
    }

    .cookie-option {
      border: 1px solid #373737;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      padding: 0.75rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.75rem;
      align-items: start;
    }

    .cookie-option strong {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 0.16rem;
    }

    .cookie-option small {
      color: #b8b8b8;
      font-size: 0.78rem;
      line-height: 1.45;
      display: block;
    }

    .cookie-option input[type="checkbox"] {
      width: 1.05rem;
      height: 1.05rem;
      accent-color: var(--accent);
      margin-top: 0.15rem;
    }

    .cookie-modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }

    .cookie-settings-trigger {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 115;
      border: 1px solid #464646;
      border-radius: 999px;
      padding: 0.58rem 0.82rem;
      font-family: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      color: #f0f0f0;
      background: rgba(12, 12, 12, 0.94);
      cursor: pointer;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
    }

    .cookie-settings-trigger.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .cookie-settings-trigger:hover {
      border-color: #666666;
    }

    body.cookie-modal-open {
      overflow: hidden;
    }

    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.13);
      padding: 2.2rem 0 2.9rem;
      background: #080808;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 1rem;
    }

    .footer-brand img {
      width: min(240px, 42vw);
      display: block;
      margin-bottom: 0.65rem;
    }

    .footer-title {
      font-family: "Sora", sans-serif;
      font-size: 0.98rem;
      margin-bottom: 0.45rem;
    }

    footer p,
    footer a {
      color: #b7b7b7;
      font-size: 0.89rem;
    }

    footer a:hover {
      color: #ffffff;
    }

    .legal {
      border-top: 1px solid #232323;
      margin-top: 1.1rem;
      padding-top: 1rem;
      color: #989898;
      font-size: 0.82rem;
      display: flex;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 560ms ease, transform 560ms ease;
    }

    [data-reveal].show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1040px) {
      .hero-grid,
      .ai-focus,
      .pillar-grid,
      .contact-hub,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .offering-grid,
      .pressure-grid,
      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero {
        padding-top: 4rem;
      }

      .hero h1 {
        max-width: 18ch;
      }
    }

    @media (max-width: 760px) {
      .topbar {
        transform: none !important;
      }

      .container {
        width: min(var(--max), calc(100% - 1.35rem));
      }

      .nav {
        position: relative;
        min-height: 68px;
        gap: 0.65rem;
      }

      .topbar.topbar-compact .nav {
        min-height: 62px;
      }

      .brand img {
        width: clamp(170px, 48vw, 210px);
      }

      .menu-toggle {
        display: inline-flex;
        order: 3;
        flex: 0 0 auto;
        margin-left: 0;
      }

      .menu {
        order: 4;
        display: none;
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        padding: 0.72rem;
        border: 1px solid #3a3a3a;
        border-radius: 14px;
        background: #111111;
        box-shadow: var(--shadow);
        z-index: 90;
      }

      .topbar.menu-open .menu {
        display: flex;
      }

      .menu a,
      .menu .menu-current,
      .menu .menu-dropdown summary {
        width: 100%;
        border-radius: 10px;
        padding: 0.72rem 0.8rem;
      }

      .menu .menu-dropdown {
        width: 100%;
      }

      .menu .menu-dropdown summary {
        justify-content: space-between;
      }

      .menu .menu-dropdown.is-current summary {
        border-radius: 10px;
        padding: 0.72rem 0.8rem;
      }

      .menu-dropdown-panel {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.3rem;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
      }

      .lang-switch {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
        align-self: center;
      }

      .offering-grid,
      .pressure-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      section {
        padding: 3.2rem 0;
      }

      .cta {
        padding-top: 2.8rem;
      }

      .legal {
        flex-direction: column;
      }

      .cookie-consent {
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.65rem;
      }

      .cookie-consent-inner {
        grid-template-columns: 1fr;
        padding: 0.92rem;
      }

      .cookie-modal {
        padding: 0.7rem;
      }

      .cookie-modal-card {
        padding: 0.9rem;
      }

      .cookie-modal-actions .btn {
        flex: 1 1 100%;
      }

      .cookie-settings-trigger {
        right: 0.65rem;
        bottom: 0.65rem;
      }
    }
