/* Page-specific homepage styles. Shared shell rules are finalized in assets/shell.css. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }

    :root {
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 20px;
      --radius-pill: 999px;
      --shadow-soft: 0 28px 60px rgba(2, 6, 16, 0.34);
      --shadow-card: 0 18px 38px rgba(2, 6, 16, 0.24);
      --section-pad: clamp(1.85rem, 3vw, 3rem);
      --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-sub: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
      font-family: var(--font-body);
      background:
        radial-gradient(circle at top left, rgba(209, 92, 255, 0.2), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(255, 79, 181, 0.12), transparent 22%),
        radial-gradient(circle at 72% 56%, rgba(255, 152, 40, 0.1), transparent 22%),
        linear-gradient(180deg, #16191f 0%, #0f1218 42%, #06040c 100%);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
      font-weight: 400;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    body::before {
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px),
        radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px),
        radial-gradient(circle at 55% 75%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px);
      background-size: 260px 260px, 320px 320px, 280px 280px;
      opacity: 0.45;
    }

    body::after {
      background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.015), transparent),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
      mix-blend-mode: screen;
      opacity: 0.45;
    }

    a { color: inherit; }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 2px solid rgba(255, 152, 40, 0.9);
      outline-offset: 2px;
    }

    .container {
      width: min(92%, 1180px);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 8, 15, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 0;
    }

    .nav-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
      min-width: 0;
      justify-self: start;
    }

    .nav-icon {
      width: clamp(140px, 15vw, 210px);
      height: 72px;
      object-fit: contain;
      object-position: left center;
      display: block;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .nav-links {
      list-style: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      justify-self: stretch;
      gap: 0.45rem;
      flex-wrap: wrap;
    }

    .nav-actions-group {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      justify-self: end;
      gap: 0.7rem;
      flex-wrap: wrap;
    }

    .nav-menu {
      display: contents;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(2, 6, 16, 0.14);
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 79, 181, 0.24);
    }

    .nav-toggle span {
      width: 19px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    nav.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

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

    nav.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem;
      border-radius: var(--radius-pill);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: none;
    }

    .lang-switch a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0.4rem 0.8rem;
      border-radius: var(--radius-pill);
      color: var(--muted);
      text-decoration: none;
      font-family: var(--font-sub);
      font-size: 0.66rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .lang-switch a:hover,
    .lang-switch a:focus-visible {
      color: var(--text);
      transform: translateY(-1px);
    }

    .lang-switch a.active {
      color: #ffffff;
      background: linear-gradient(135deg, rgba(255, 79, 181, 0.82), rgba(255, 152, 40, 0.82));
      box-shadow: none;
    }

    .nav-links a,
    .product-link {
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-pill);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      color: var(--muted);
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      transform: translateY(-1px);
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 79, 181, 0.24);
      box-shadow: 0 10px 24px rgba(255, 79, 181, 0.12);
    }

    section,
    .contact-bg {
      padding: var(--section-pad) 0;
      position: relative;
      z-index: 1;
    }

    .products-bg {
      padding-top: clamp(0.65rem, 1.2vw, 1rem);
      padding-bottom: clamp(0.95rem, 1.8vw, 1.45rem);
    }

    .contact-bg {
      padding-block: clamp(0.75rem, 1.5vw, 1.25rem);
    }

    section[id],
    .contact-bg[id] {
      scroll-margin-top: 6.5rem;
    }

    section > .container,
    .contact-bg > .container {
      padding: clamp(1.9rem, 3vw, 2.65rem);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .contact-bg > .container {
      padding-block: clamp(1.25rem, 2vw, 1.75rem);
    }

    .contact-head-wrap {
      margin-bottom: clamp(0.95rem, 1.8vw, 1.35rem);
    }

    .about-bg > .container {
      background:
        radial-gradient(circle at top right, rgba(255, 79, 181, 0.07), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    }

    .products-bg > .container {
      background:
        radial-gradient(circle at top left, rgba(255, 152, 40, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    }

    .sec-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.8vw, 3rem);
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 1rem;
      text-shadow: 0 0 14px rgba(255, 79, 181, 0.04);
      font-weight: 800;
      text-wrap: balance;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
      gap: clamp(1.8rem, 3.2vw, 2.6rem);
      align-items: stretch;
    }

    .about-head {
      max-width: none;
      margin-bottom: 0;
      text-align: center;
    }

    .about-head .sec-title {
      font-size: clamp(1.35rem, 2.2vw, 2rem);
      margin-bottom: 0;
    }

    .about-head-wrap {
      position: relative;
      z-index: 1;
      margin-bottom: clamp(0.95rem, 1.8vw, 1.35rem);
    }

    .about-brand-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      height: 100%;
      min-height: 100%;
      padding: 1.8rem 1.6rem;
      text-align: center;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 16% 18%, rgba(209, 92, 255, 0.12), transparent 32%),
        radial-gradient(circle at 84% 20%, rgba(255, 152, 40, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow-card);
    }

    .about-brand-icon {
      width: min(100%, 300px);
      height: auto;
      object-fit: contain;
      flex-shrink: 0;
      filter: drop-shadow(0 16px 28px rgba(2, 6, 16, 0.2));
    }

    .about-brand-copy {
      display: flex;
      flex-direction: column;
      gap: 0.42rem;
      align-items: center;
      max-width: 27rem;
      margin-inline: auto;
    }

    .about-lead {
      color: var(--text);
      font-size: 1rem;
      line-height: 1.58;
      font-weight: 700;
      text-wrap: balance;
    }

    .process-grid,
    .future-row {
      display: grid;
      gap: 1.35rem;
    }

    .process-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: minmax(0, 1fr);
      align-content: stretch;
      align-items: stretch;
      height: 100%;
    }

    .process-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      min-height: 0;
      padding: 1.45rem 1.5rem;
      border-radius: var(--radius-lg);
      background: var(--surface-3);
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow-card);
      text-align: center;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .process-card:hover {
      transform: translateY(-3px);
      background: var(--surface-4);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .process-step {
      display: block;
      color: var(--text);
      font-family: var(--font-sub);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 1.35;
      margin-bottom: 0.35rem;
      text-transform: none;
    }

    .process-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.7;
      text-wrap: pretty;
    }

    .product-card {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
      gap: 2.2rem;
      align-items: stretch;
      padding: clamp(2rem, 3vw, 2.7rem);
      border-radius: 30px;
      background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(249, 115, 22, 0.22);
      box-shadow: var(--shadow-card);
      margin-bottom: 1.4rem;
    }

    .axolino-spotlight {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.22), transparent 34%),
        radial-gradient(circle at 86% 16%, rgba(14, 165, 233, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
      border-color: rgba(249, 115, 22, 0.28);
      box-shadow: 0 24px 44px rgba(2, 6, 16, 0.26);
    }

    .axolino-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .axolino-branding {
      display: flex;
      align-items: center;
      gap: 1.15rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .axolino-wordmark {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      min-width: 0;
      flex: 1 1 240px;
    }

    .axolino-wordmark img {
      width: min(100%, 260px);
      height: auto;
      display: block;
      filter: drop-shadow(0 12px 24px rgba(249, 115, 22, 0.2));
    }

    .axolino-kicker {
      max-width: 30rem;
      color: #d7e4ff;
      font-size: 0.95rem;
      line-height: 1.7;
      text-wrap: pretty;
    }

    .axolino-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 1.1rem;
    }

    .axolino-fact {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 0.9rem;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      color: #f3f7ff;
      font-size: 0.82rem;
      font-weight: 400;
      line-height: 1.35;
      text-align: center;
    }

    .axolino-preview {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      min-height: 360px;
      padding: 0;
      overflow: visible;
    }

    .axolino-slider {
      position: relative;
      width: min(100%, 500px);
      aspect-ratio: 1021 / 662;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 28px 54px rgba(15, 23, 42, 0.36);
    }

    .axolino-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      opacity: 0;
      animation: axolinoSlide 12s infinite;
    }

    .axolino-slide.slide-2 { animation-delay: 4s; }
    .axolino-slide.slide-3 { animation-delay: 8s; }

    @keyframes axolinoSlide {
      0%, 29% { opacity: 1; }
      34%, 100% { opacity: 0; }
    }

    .product-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      margin-top: 1.15rem;
      padding: 0.85rem 1.4rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .product-link.axolino-home-link {
      position: relative;
      grid-column: 1 / -1;
      width: 100%;
      margin-top: 0.2rem;
      overflow: hidden;
      background: linear-gradient(135deg, #8a5b06 0%, #d69b16 34%, #ffdc74 56%, #c8840d 78%, #ffe08a 100%);
      border-color: rgba(255, 222, 126, 0.62);
      color: #2a2100;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 0 24px rgba(255, 205, 75, 0.26);
      isolation: isolate;
    }

    .product-link.axolino-home-link::before {
      content: "";
      position: absolute;
      inset: 0;
      width: 42%;
      transform: translateX(-150%) skewX(-18deg);
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
      animation: axolinoGoldShine 2.4s linear infinite;
      pointer-events: none;
      z-index: -1;
    }

    .product-link.axolino-home-link:hover,
    .product-link.axolino-home-link:focus-visible {
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 0 30px rgba(255, 205, 75, 0.34);
    }

    @keyframes axolinoGoldShine {
      0% { transform: translateX(-160%) skewX(-18deg); }
      100% { transform: translateX(340%) skewX(-18deg); }
    }

    .axolino-action-group {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-self: stretch;
      gap: 0.55rem;
      width: 100%;
      margin-top: 0.2rem;
    }

    .axolino-action-group .product-link {
      margin-top: 0;
    }

    .axolino-action-group .axolino-home-link {
      align-self: stretch;
      width: 100%;
    }

    .product-link.axolino-privacy-link,
    .product-link.axolino-instagram-link {
      align-self: stretch;
      width: 100%;
      background: rgba(255, 255, 255, 0.045);
      border-color: rgba(255, 255, 255, 0.14);
      color: rgba(245, 239, 255, 0.78);
      box-shadow: none;
    }

    .product-link.axolino-privacy-link:hover,
    .product-link.axolino-privacy-link:focus-visible,
    .product-link.axolino-instagram-link:hover,
    .product-link.axolino-instagram-link:focus-visible {
      transform: translateY(-1px);
      color: #ffffff;
      background: rgba(255, 255, 255, 0.075);
      border-color: rgba(255, 191, 90, 0.32);
      box-shadow: 0 14px 28px rgba(2, 6, 16, 0.18);
    }

    .product-link.axolino-instagram-link {
      gap: 0.55rem;
    }

    .axolino-instagram-link .instagram-icon {
      width: 1.15rem;
      height: 1.15rem;
      flex: 0 0 auto;
      color: #ffffff;
    }

    .product-link.is-disabled:not(.axolino-home-link) {
      cursor: default;
      opacity: 0.78;
      pointer-events: none;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.12);
      color: rgba(245, 239, 255, 0.82);
    }

    .product-link.axolino-home-link.is-disabled {
      cursor: default;
      pointer-events: none;
    }

    .future-row { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

    .future-card {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      min-height: 100%;
      padding: 1.5rem;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .future-card::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 4px;
      opacity: 0.9;
      background: linear-gradient(90deg, transparent, var(--water), var(--fire), transparent);
    }

    .future-card::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      filter: blur(44px);
      opacity: 0.34;
      pointer-events: none;
    }

    .future-card:hover {
      transform: translateY(-4px);
      background: var(--surface-4);
      border-color: rgba(255, 255, 255, 0.14);
      box-shadow: 0 22px 38px rgba(2, 6, 16, 0.24);
    }

    .future-card h3 {
      font-size: 1rem;
      line-height: 1.35;
      color: var(--text);
      margin-bottom: 0.1rem;
      text-wrap: balance;
    }

    .future-card p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.72;
      text-wrap: pretty;
    }

    .portfolio-lanes {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.15rem;
      margin-top: 1.1rem;
      align-items: stretch;
      max-width: none;
    }

    .portfolio-lanes .future-card {
      padding: 1.7rem 1.75rem;
    }

    .lane-dev {
      background:
        radial-gradient(circle at top right, rgba(209, 92, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
      border-color: rgba(209, 92, 255, 0.18);
      box-shadow: 0 20px 34px rgba(69, 28, 103, 0.18);
    }

    .lane-dev::after {
      top: -36px;
      right: -26px;
      background: rgba(209, 92, 255, 0.22);
    }

    .lane-partner {
      background:
        radial-gradient(circle at top right, rgba(255, 152, 40, 0.15), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
      border-color: rgba(255, 152, 40, 0.18);
      box-shadow: 0 20px 34px rgba(104, 52, 13, 0.16);
    }

    .lane-partner::after {
      right: -24px;
      bottom: -42px;
      background: rgba(255, 152, 40, 0.2);
    }

    .contact-head {
      text-align: center;
    }

    .contact-head .sec-title {
      font-size: clamp(1.35rem, 2.2vw, 2rem);
      margin-bottom: 0.55rem;
    }

    .contact-intro {
      max-width: 44rem;
      margin: 0 auto;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.75;
      text-wrap: pretty;
    }

    .contact-form {
      width: 100%;
      padding: clamp(1.35rem, 2.2vw, 1.8rem);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at top left, rgba(255, 79, 181, 0.10), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(255, 152, 40, 0.08), transparent 26%),
        rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow-card);
      text-align: left;
    }

    .contact-form textarea {
      min-height: 150px;
    }

    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(6, 4, 14, 0.82);
      backdrop-filter: blur(12px);
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .modal-overlay.open { display: flex; }

    .modal-box {
      width: min(100%, 560px);
      padding: 2rem;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at top, rgba(255, 79, 181, 0.10), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(255, 152, 40, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(12, 19, 35, 0.98), rgba(8, 14, 25, 0.98));
      box-shadow: 0 40px 80px rgba(2, 6, 16, 0.45);
      position: relative;
      animation: modalIn 0.28s ease;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: 0.75rem;
      transform: translateX(-50%);
      width: min(calc(100% - 1rem), 920px);
      z-index: 220;
      padding: 0.85rem 0.95rem;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background:
        radial-gradient(circle at top left, rgba(209, 92, 255, 0.12), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 152, 40, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(15, 11, 23, 0.96), rgba(10, 8, 16, 0.98));
      box-shadow: 0 24px 52px rgba(2, 6, 16, 0.38);
      backdrop-filter: blur(18px);
    }

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

    .cookie-banner-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem 1rem;
      flex-wrap: wrap;
    }

    .cookie-copy {
      flex: 1 1 430px;
      min-width: 260px;
    }

    .cookie-kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0.25rem 0.64rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.05);
      color: var(--muted);
      font-family: var(--font-sub);
      font-size: 0.54rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.45rem;
    }

    .cookie-copy h3 {
      font-size: 0.92rem;
      line-height: 1.35;
      color: var(--text);
      margin-bottom: 0.25rem;
      text-wrap: balance;
    }

    .cookie-copy p {
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.52;
      text-wrap: pretty;
    }

    .cookie-copy a,
    .cookie-meta a {
      color: #ffd8b5;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-actions {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cookie-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0.68rem 0.95rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      font-family: var(--font-sub);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .cookie-btn:hover,
    .cookie-btn:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(255, 79, 181, 0.24);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 16px 26px rgba(2, 6, 16, 0.22);
    }

    .cookie-btn.primary {
      border: none;
      background: linear-gradient(135deg, var(--water), var(--fire));
      color: #fff;
      box-shadow: 0 16px 30px rgba(255, 79, 181, 0.2);
    }

    .cookie-link-btn {
      border: none;
      background: none;
      padding: 0;
      color: var(--muted);
      font: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
    }

    .cookie-options {
      display: grid;
      gap: 0.9rem;
      margin: 1.35rem 0 1.5rem;
    }

    .cookie-option {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.05rem;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
    }

    .cookie-option-copy h3 {
      color: var(--text);
      font-size: 0.92rem;
      margin-bottom: 0.2rem;
    }

    .cookie-option-copy p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.62;
    }

    .cookie-switch {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      flex-shrink: 0;
      color: var(--text);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .cookie-switch input {
      width: 18px;
      height: 18px;
      accent-color: var(--water);
    }

    .cookie-meta {
      margin-top: 0.65rem;
      color: rgba(245, 239, 255, 0.72);
      font-size: 0.8rem;
      line-height: 1.55;
    }

    .modal-title {
      font-size: 1.55rem;
      color: var(--text);
      margin-bottom: 0.35rem;
      text-wrap: balance;
    }

    .modal-sub { margin-bottom: 1.4rem; }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 0.95rem;
    }

    .form-field-trap {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip-path: inset(50%);
      white-space: nowrap;
    }

    .form-field label {
      color: var(--muted);
      font-family: var(--font-sub);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      padding: 0.9rem 1rem;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.94rem;
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: rgba(255, 79, 181, 0.28);
      background: rgba(255, 255, 255, 0.06);
    }

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

    .form-privacy-note {
      margin: 0.15rem 0 0.85rem;
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.55;
      text-align: center;
    }

    .form-privacy-note a {
      color: #ffd8b5;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .form-field select option { background: #0b1220; }

    .form-submit {
      width: 100%;
      min-height: 48px;
      margin-top: 0.35rem;
      padding: 0.9rem 1.2rem;
      border-radius: var(--radius-pill);
      border: none;
      background: linear-gradient(135deg, var(--water), var(--fire));
      color: #ffffff;
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: none;
    }

    footer {
      margin-top: clamp(0.45rem, 1.2vw, 0.85rem);
      padding: clamp(1.05rem, 2vw, 1.45rem) 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 8, 15, 0.9);
      backdrop-filter: blur(18px);
    }

    .footer-top {
      display: grid;
      grid-template-columns: auto minmax(15rem, 24rem) minmax(18rem, max-content);
      align-items: center;
      justify-content: center;
      padding-bottom: 0;
      gap: clamp(1rem, 2.6vw, 2.6rem);
      text-align: left;
    }

    .footer-brand {
      min-width: 0;
      max-width: 29rem;
      display: contents;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0;
      text-decoration: none;
      flex: 0 0 auto;
      align-self: start;
    }

    .footer-wordmark-img {
      width: clamp(138px, 14vw, 190px);
      height: auto;
      display: block;
    }

    .footer-text {
      min-width: 0;
      width: 100%;
      max-width: 24rem;
      display: grid;
      gap: 0.55rem;
      align-content: center;
    }

    .footer-copy {
      min-width: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 24rem;
    }

    .footer-brand p {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .footer-legal {
      width: 100%;
      color: rgba(245, 239, 255, 0.62);
      font-size: 0.74rem;
      line-height: 1.55;
      margin-top: 0;
    }

    .footer-cols {
      width: auto;
      display: grid;
      grid-template-columns: repeat(2, max-content);
      gap: 0.55rem clamp(1.4rem, 3vw, 2.4rem);
      justify-content: start;
      justify-self: end;
      align-self: center;
      align-items: start;
    }

    .footer-link-col {
      min-width: 0;
      display: contents;
    }

    .footer-link-col a,
    .footer-link-col .cookie-link-btn {
      color: var(--muted);
      font-size: 0.84rem;
      text-decoration: none;
      text-align: left;
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .footer-link-col a:hover,
    .footer-link-col a:focus-visible,
    .footer-link-col .cookie-link-btn:hover,
    .footer-link-col .cookie-link-btn:focus-visible {
      color: var(--text);
    }

    .footer-link-col .cookie-link-btn {
      text-decoration: none;
    }

    .footer-legal a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px) scale(0.985);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.on {
      opacity: 1;
      transform: none;
    }

    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }
    .d4 { transition-delay: 0.32s; }

    @keyframes modalIn {
      from { opacity: 0; transform: translateY(14px) scale(0.98); }
      to { opacity: 1; transform: none; }
    }

    @media (max-width: 920px) {
      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-head {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .about-brand-card {
        flex-direction: column;
        text-align: center;
      }

    }

@media (max-width: 760px) {
      nav .container {
        width: min(calc(100% - 1rem), 1180px);
      }

      .nav-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        justify-items: stretch;
        gap: 0.75rem;
        padding: 0.65rem 0;
      }

      .nav-brand {
        justify-self: start;
      }

      .nav-icon {
        width: clamp(132px, 42vw, 170px);
        height: 58px;
      }

      .nav-toggle {
        display: inline-flex;
        justify-self: end;
      }

      .nav-menu {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
        padding: 0.85rem;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
          radial-gradient(circle at top left, rgba(255, 79, 181, 0.10), transparent 34%),
          radial-gradient(circle at 92% 8%, rgba(255, 152, 40, 0.08), transparent 28%),
          rgba(10, 8, 15, 0.96);
        box-shadow: 0 20px 42px rgba(2, 6, 16, 0.28);
        backdrop-filter: blur(18px);
      }

      nav.nav-open .nav-menu {
        display: grid;
        gap: 0.75rem;
      }

      .nav-links {
        display: grid;
        width: 100%;
        justify-content: stretch;
        gap: 0.45rem;
      }

      .nav-links a {
        width: 100%;
      }

      .nav-actions-group {
        width: 100%;
        justify-content: center;
        justify-self: stretch;
      }

      .lang-switch {
        width: 100%;
      }

      .lang-switch a {
        flex: 1;
      }

      .about-head .sec-title {
        white-space: normal;
      }

      .process-grid,
      .portfolio-lanes {
        grid-template-columns: 1fr;
      }

      .product-card {
        grid-template-columns: 1fr;
      }

      .axolino-branding {
        justify-content: center;
      }

      .about-brand-copy {
        align-items: center;
      }

      .axolino-wordmark img {
        margin: 0 auto;
      }

      .axolino-preview {
        min-height: 0;
        padding: 0;
      }

      .axolino-slider {
        border-radius: 22px;
      }

      .product-card {
        text-align: center;
      }

      .footer-top {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        justify-items: center;
        gap: 0.85rem;
        text-align: center;
      }

      footer {
        padding-top: 0.65rem;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
      }

      .footer-logo {
        width: 100%;
        justify-content: center;
        justify-self: center;
        align-self: center;
      }

      .footer-logo picture {
        display: flex;
        justify-content: center;
        width: 100%;
      }

      .footer-wordmark-img {
        margin-inline: auto;
      }

      .footer-text {
        width: min(100%, calc(100vw - 2rem));
        max-width: calc(100vw - 2rem);
        justify-items: center;
        text-align: center;
      }

      .footer-copy {
        width: min(100%, calc(100vw - 2rem));
        max-width: calc(100vw - 2rem);
        align-items: center;
      }

      .footer-copy p,
      .footer-legal {
        width: min(100%, calc(100vw - 2rem));
        max-width: calc(100vw - 2rem);
        white-space: normal;
      }

      .footer-copy p {
        width: min(19rem, calc(100vw - 2rem));
        max-width: min(19rem, calc(100vw - 2rem));
      }

      .footer-brand p,
      .footer-legal {
        text-align: center;
      }

      .footer-cols {
        grid-area: auto;
        width: min(100%, 24rem);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        justify-self: center;
        gap: 0.65rem 0.75rem;
        text-align: center;
      }

      .footer-link-col {
        display: grid;
        gap: 0.55rem;
        justify-items: center;
      }

      .footer-link-col a,
      .footer-link-col .cookie-link-btn {
        display: block;
        width: 100%;
        text-align: center;
      }

    }

@media (max-width: 540px) {
      .nav-menu {
        padding: 0.75rem;
        border-radius: 20px;
      }

      .nav-links {
        gap: 0.35rem;
      }

      .nav-links a {
        min-height: 38px;
        padding: 0.42rem 0.72rem;
        font-size: 0.62rem;
      }

      .nav-actions-group {
        width: 100%;
        justify-content: center;
      }

      .product-link {
        width: 100%;
      }

      section > .container,
      .contact-bg > .container {
        padding: 1.75rem;
      }

      .nav-icon {
        width: 148px;
        height: 58px;
      }

      .footer-brand {
        flex-direction: column;
        text-align: center;
      }

      .cookie-banner {
        width: calc(100% - 0.8rem);
        bottom: 0.4rem;
        padding: 0.72rem;
        border-radius: 18px;
      }

      .cookie-copy h3 {
        font-size: 0.86rem;
      }

      .cookie-copy p {
        font-size: 0.78rem;
        line-height: 1.48;
      }

      .cookie-option {
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal,
      .modal-box {
        animation: none !important;
        transition: none !important;
        transform: none !important;
      }
      .reveal { opacity: 1 !important; }
      .axolino-slide {
        animation: none !important;
        opacity: 0;
      }
      .axolino-slide.slide-1 { opacity: 1; }
    }

    .cookie-settings-anchor {
      position: relative;
      top: -6.5rem;
      display: block;
      width: 1px;
      height: 1px;
      overflow: hidden;
      pointer-events: none;
    }
