/* Theme tokens */
:root {
    --bg-color: floralwhite;
    --text-color: #101010;
    --nav-color:  #696969;
    --accent-color: #242424;
    --head-color: #414141; 
    --border-color: #000000;  
    --shadow: rgba(0, 0, 0, 0.214);
    --gradient: linear-gradient(-45deg, #ffffff, #8d8d8d, #d0d0d0, #f0f0f0);
    --glow-gradient: radial-gradient(circle, rgba(36, 36, 36, 0.10) 0%, rgba(87, 143, 255, 0.07) 38%, transparent 74%);
    --glow-blend-mode: multiply;
    --activ:floralwhite;
    --pastel-mint: #dff3ea;
    --pastel-peach: #ffe9dd;
    --pastel-sky: #e4efff;
    --pastel-lilac: #eee7ff;
    --pastel-red: #f2e2cf;
    --pastel-wash: linear-gradient(135deg, #fff8f1 0%, #f7fbff 55%, #f8fff8 100%);
    --mint: rgb(5, 246, 158);
    --green:rgb(2, 254, 2);
    --peach: rgb(255, 189, 151);
    --sky: rgb(87, 143, 255);
    --lilac: rgb(104, 66, 255);
    --red: rgba(178, 112, 48, 0.54);
    --logo-warm-glow-rgb: 190, 126, 58;
    --logo-warm-sheen-rgb: 168, 101, 42;
    --logo-warm-shadow-rgb: 118, 82, 48;
    --logo-warm-focus-rgb: 174, 108, 48;
    --logo-progress-sheen-rgb: 168, 101, 42;
    --brief-light-surface: #fffaf2;
    --brief-light-panel: #fffdf8;
    --brief-light-line-rgb: 176, 137, 92;
    --wash: linear-gradient(135deg, rgb(255, 190, 160) 0%, rgb(163, 187, 255) 50%, rgb(176, 234, 196) 100%);
  }
.dark-mode {
    --bg-color: #242424;
    --text-color: #fff;
    --accent-color: #fafafa;
    --nav-color:  #a4a4a4;
    --head-color: #bcbcbc;
    --border-color: floralwhite;
    --shadow: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(-45deg, #242424, #515151, #282828, #646469);
    --glow-gradient: radial-gradient(circle, rgba(255, 255, 255, 0.11) 0%, rgba(255, 189, 151, 0.07) 38%, transparent 74%);
    --glow-blend-mode: screen;
    --activ:rgba(255, 255, 255, 0.1);
    --pastel-mint: rgba(155, 226, 200, 0.14);
    --pastel-peach: rgba(255, 189, 151, 0.15);
    --pastel-sky: rgba(157, 190, 255, 0.16);
    --pastel-lilac: rgba(177, 157, 255, 0.16);
    --pastel-red: rgba(255, 125, 140, 0.16);
    --pastel-wash: linear-gradient(135deg, rgba(255, 190, 160, 0.08) 0%, rgba(163, 188, 255, 0.08) 50%, rgba(176, 234, 196, 0.08) 100%);
     --mint: rgb(5, 246, 158);
     --green:rgb(2, 254, 2);
    --peach: rgb(255, 189, 151);
    --sky: rgb(87, 143, 255);
    --lilac: rgb(104, 66, 255);
    --wash: linear-gradient(135deg, rgb(255, 190, 160) 0%, rgb(163, 187, 255) 50%, rgb(176, 234, 196) 100%);

  }
/* Base */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
@media (prefers-reduced-motion: reduce) {
  html {
      scroll-behavior: auto;
    }
}
body {
    font-family: "Open Sans", sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
  }
a:hover {
    color: var(--accent-color);
  }
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    transition: color 0.3s ease;
  }
/* Theme switcher */
.theme-switcher {
      position: relative;
      display: flex;
      background: transparent;
      padding: 4px;
      gap: 5px;
      width: fit-content;
      margin-left: 15px;
  }
.theme-btn {
      background: transparent;
      border: none;
      color: var(--nav-color); 
      cursor: pointer;
      padding: 4px 8px;
      font-size: 0.6rem;
      z-index: 2;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
  }
.theme-btn:hover {
      color: var(--accent-color);
  }
.theme-btn.active {
      color: var(--accent-color);
  }
.theme-active-bg {
      position: absolute;
      top: 4px;
      left: 4px;
      height: calc(100% - 8px);
      width: 28px; 
      background: var(--activ);
      border-radius: 50px;
      z-index: 1;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 2px var(--shadow);
  }
[data-active-theme="light"] .theme-active-bg { transform: translateX(0); }
[data-active-theme="auto"] .theme-active-bg { transform: translateX(29px); }
[data-active-theme="dark"] .theme-active-bg { transform: translateX(60px); }
.section-title {
    text-align: center;
    padding: 60px 0 0 0;
  }
.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    position: relative;
    color: var(--text-color);
    transition: color 0.3s ease;
  }
.section-title h2::before {
    margin: 0 15px 10px 0;
  }
.section-title h2::after {
    margin: 0 0 10px 15px;
  }
.section-title p {
    margin: 15px 0 0 0;
  }
/* Error page */
.error-page {
    min-height: calc(100vh - 70px);
    padding: 132px 16px 72px;
    display: grid;
    place-items: center;
    color: var(--text-color);
  }
.error-page__inner {
    width: min(680px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 46px);
    text-align: center;
    background: color-mix(in srgb, var(--bg-color) 94%, #fff 6%);
    border: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
    border-radius: 8px;
    box-shadow: 0 18px 40px var(--shadow);
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
.error-page__mark {
    width: clamp(92px, 16vw, 132px);
    height: auto;
    margin: 0 auto 18px;
    display: block;
  }
.error-page__code {
    margin: 0 0 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--head-color);
  }
.error-page h1 {
    margin: 0 0 14px;
    color: var(--text-color);
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.12;
    font-weight: 700;
  }
.error-page__message {
    max-width: 58ch;
    margin: 0 auto 28px;
    color: color-mix(in srgb, var(--text-color) 78%, transparent);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
  }
.error-page__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
.error-page__actions .btn-custom {
    margin: 0;
  }
.dark-mode .error-page__inner {
    background: color-mix(in srgb, var(--bg-color) 92%, #111 8%);
  }
@media (max-width: 576px) {
  .error-page {
      padding: 112px 14px 54px;
    }
  .error-page__actions {
      align-items: stretch;
      flex-direction: column;
    }
  .error-page__actions .btn-custom {
      width: 100%;
      justify-content: center;
    }
}
/* Buttons */
.button,
.btn-custom {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 20px;
    position: relative;
    color: var(--text-color);
    background: transparent;
    border: 0;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  }
.button {
    padding: 20px 30px;
    font-weight: 300;
    letter-spacing: 2px;
  }
.button:before, .button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    box-sizing: border-box;
  }
.button:before {
    bottom: 0;
    left: 0;
    border-left: 1px solid var(--text-color);
    border-top: 1px solid var(--text-color);
    transition: 0s ease opacity 0.8s, 0.2s ease width 0.4s, 0.2s ease height 0.6s;
  }
.button:after {
    top: 0;
    right: 0;
    border-right: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    transition: 0s ease opacity 0.4s, 0.2s ease width, 0.2s ease height 0.2s;
  }
.button:hover:before, .button:hover:after {
    height: 100%;
    width: 100%;
    opacity: 1;
  }
.button:hover:before {
    transition: 0s ease opacity 0s, 0.2s ease height, 0.2s ease width 0.2s;
  }
.button:hover:after {
    transition: 0s ease opacity 0.4s, 0.2s ease height 0.4s, 0.2s ease width 0.6s;
  }
.btn-custom {
    min-height: 52px;
    padding: 14px 24px;
    overflow: hidden;
    isolation: isolate;
    font-weight: 700;
    letter-spacing: 0.8px;
  }
.btn-custom--secondary {
    border: 1px solid color-mix(in srgb, var(--text-color) 28%, transparent);
    font-weight: 600;
  }
.button:hover,
.btn-custom:hover {
    color: var(--text-color);
    transform: translateY(-2px);
  }
.btn-custom--secondary:hover {
    background: color-mix(in srgb, var(--text-color) 6%, transparent);
    border-color: color-mix(in srgb, var(--text-color) 46%, transparent);
  }
.button:focus-visible,
.btn-custom:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-color) 42%, transparent);
    outline-offset: 4px;
  }
.button:active,
.btn-custom:active {
    transform: translateY(0);
  }
@media (max-width: 991px) {
  .button,
  .btn-custom {
      margin: 5px 0px;
      font-size: 13px;
    }
  .button {
      padding: 10px 15px;
      font-weight: 100;
    }
  .btn-custom {
      min-height: 46px;
      padding: 11px 18px;
    }
}
.back-to-top {
    appearance: none;
    -webkit-appearance: none;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 26px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--border-color) 44%, transparent);
    background:
      linear-gradient(145deg, color-mix(in srgb, #ffffff 16%, transparent), color-mix(in srgb, var(--bg-color) 24%, transparent)),
      color-mix(in srgb, var(--bg-color) 38%, transparent);
    box-shadow: 0 8px 24px var(--shadow), inset 0 1px 0 color-mix(in srgb, #ffffff 28%, transparent);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
.back-to-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 24% 18%, color-mix(in srgb, #ffffff 34%, transparent), transparent 42%),
      radial-gradient(circle at 80% 78%, color-mix(in srgb, var(--accent-color) 20%, transparent), transparent 46%);
    opacity: 0.68;
    pointer-events: none;
}
.back-to-top-icon {
    position: relative;
    z-index: 1;
    display: block;
    width: 20px;
    height: 20px;
    background: var(--nav-color);
    -webkit-mask: url("../images/back-to-top-arrow.svg") center / contain no-repeat;
    mask: url("../images/back-to-top-arrow.svg") center / contain no-repeat;
    transform: translateY(0);
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.back-to-top:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent-color) 34%, var(--border-color));
    box-shadow: 0 12px 30px var(--shadow), inset 0 1px 0 color-mix(in srgb, #ffffff 36%, transparent);
  }
.back-to-top:hover .back-to-top-icon {
    background: var(--accent-color);
    transform: translateY(-2px);
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
.grecaptcha-badge {
    bottom: 72px !important;
}
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--bg-color);
    transition: all 0.9s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
#preloader .preloader-logo {
    width: clamp(120px, 18vw, 210px);
    height: auto;
    transform-origin: center;
    animation: preloader-pulse 2.4s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px var(--shadow));
  }

@keyframes preloader-pulse {
  0% {
      transform: scale(1);
      opacity: 0.92;
    }
  30% {
      transform: scale(1.04);
      opacity: 0.98;
    }
  55% {
      transform: scale(1.06);
      opacity: 1;
    }
  78% {
      transform: scale(1);
      opacity: 0.92;
    }
  100% {
      transform: scale(1);
      opacity: 0.92;
    }
}
/* Header and navigation */
#header {
  transition: all 0.5s ease;
  z-index: 997;
  top: 12px;
  padding: 15px 0;
  
  background: rgba(255, 255, 255, 0); 
  backdrop-filter: blur(0px);
}
#header.header-scrolled {
  top: 12px;
  padding: 10px 0;
  
  background: rgba(255, 255, 255, 0.055); 
  backdrop-filter: blur(12px) saturate(180%); 
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] #header.header-scrolled {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo img {
    padding: 0;
    margin: 0;
    max-height: 20px;
    
    
    display: flex;
    justify-content: center;
  }
.navbar {
    padding: 0;
  }
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
.navbar li {
    position: relative;
  }
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 8px 30px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-color);
    white-space: nowrap;
    transition: color 0.3s;
    
  }
.navbar a i, .navbar a:focus i {
    font-size: 16px;
    line-height: 0;
    
  }
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--accent-color);
  
  }
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100%);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    
    border-radius: 4px;
  }
.navbar .dropdown ul li {
    min-width: auto;

  }
.navbar .dropdown ul a {
    padding: 10px;
    font-size: 14px;
  }
.navbar .dropdown ul a i {
    font-size: 24px;
  }
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--accent-color);
  }
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
.navbar .language-switcher > a, .navbar .language-switcher > a:focus {
    gap: 6px;
    padding: 6px 10px;
    margin-left: 18px;
    border: 1px solid color-mix(in srgb, var(--border-color) 14%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-color) 86%, #111 6%);
    box-shadow:
      inset 0 1px 0 color-mix(in srgb, #ffffff 24%, transparent),
      0 6px 14px color-mix(in srgb, var(--shadow) 38%, transparent);
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 600;
    line-height: 1;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }
.navbar .language-switcher > a:hover, .navbar .language-switcher:hover > a {
    background:
      radial-gradient(circle at 18% 14%, rgba(var(--logo-warm-glow-rgb), 0.12), transparent 38%),
      color-mix(in srgb, var(--bg-color) 80%, #111 10%);
    border-color: color-mix(in srgb, var(--border-color) 88%);
    transform: translateY(-1px);
  }
.dark-mode .navbar .language-switcher > a:hover,
.dark-mode .navbar .language-switcher:hover > a {
    border-color: color-mix(in srgb, var(--border-color) 78%);
  }
.navbar .language-switcher .lang-current {
    min-width: 2.2ch;
    text-align: center;
  }
.navbar .language-switcher .dropdown-indicator {
    font-size: 12px;
    transition: none;
  }
.navbar .language-switcher.is-open .dropdown-indicator {
    transform: rotate(180deg);
  }
.navbar .language-switcher > .lang-list {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 0;
    border-radius: 0;
    min-width: max-content;
    max-width: calc(100vw - 24px);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    box-shadow: none;
    transform-origin: top right;
    transition: none;
    pointer-events: none;
    z-index: 1000;
  }
.navbar .language-switcher > .lang-list::before {
    display: none;
  }
@media (min-width: 992px) {
  .navbar .language-switcher:not(.is-open):hover > .lang-list {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
}
.navbar .language-switcher.is-open > .lang-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
.navbar .language-switcher > .lang-list li {
    width: auto;
  }
.navbar .language-switcher > .lang-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: 1px solid color-mix(in srgb, var(--border-color) 16%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-color) 88%, #111 6%);
    box-shadow:
      inset 0 1px 0 color-mix(in srgb, #ffffff 20%, transparent),
      0 5px 12px color-mix(in srgb, var(--shadow) 34%, transparent);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
.navbar .language-switcher > .lang-list a:hover {
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--border-color) 88%);
    background:
      radial-gradient(circle at 18% 14%, rgba(var(--logo-warm-glow-rgb), 0.12), transparent 38%),
      color-mix(in srgb, var(--bg-color) 82%, #111 10%);
    box-shadow: 0 7px 16px color-mix(in srgb, rgba(var(--logo-warm-shadow-rgb), 0.14) 18%, var(--shadow) 82%);
    transform: translateY(-1px);
  }
.dark-mode .navbar .language-switcher > .lang-list a:hover {
    border-color: color-mix(in srgb, var(--border-color) 76%);
  }
.navbar .language-switcher.language-switcher--stack > .lang-list {
    gap: 6px;
  }
.navbar .language-switcher.language-switcher--stack > .lang-list li {
    width: auto;
  }
.navbar .language-switcher.language-switcher--stack > .lang-list a {
    min-width: 0;
    padding: 7px 10px;
    border-radius: 999px;
    letter-spacing: 0.08em;
  }
.navbar .language-switcher.language-switcher--minimal > .lang-list {
    grid-template-columns: repeat(3, minmax(38px, 1fr));
    min-width: 132px;
    padding: 4px;
    gap: 4px;
    border-radius: 999px;
  }
.navbar .language-switcher.language-switcher--minimal > .lang-list a {
    border-radius: 999px;
    min-width: 38px;
    padding: 7px 8px;
  }
.dark-mode .navbar .language-switcher > a,
.dark-mode .navbar .language-switcher > a:focus {
    border-color: color-mix(in srgb, #ffffff 18%, transparent);
    background: color-mix(in srgb, #111113 72%, #ffffff 8%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 6px 14px rgba(0, 0, 0, 0.24);
  }
.dark-mode .navbar .language-switcher > .lang-list {
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
.dark-mode .navbar .language-switcher > .lang-list a {
    border-color: color-mix(in srgb, #ffffff 16%, transparent);
    background: color-mix(in srgb, #111113 78%, #ffffff 8%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 5px 12px rgba(0, 0, 0, 0.22);
  }
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
}
.mobile-nav-toggle {
    display: none; 
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 9999;
    flex-direction: column;
    justify-content: space-between;
  }
.mobile-nav-toggle span {
    display: block;
    height: 3px;
    background-color: var(--nav-color, #333); 
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin-left: auto;
  }
.mobile-nav-toggle span:nth-child(1) {
    width: 100%; 
  }
.mobile-nav-toggle span:nth-child(2) {
    width: 70%;  
  }
.mobile-nav-toggle span:nth-child(3) {
    width: 85%;  
  }
.mobile-nav-active .mobile-nav-toggle span {
    width: 100%; 
  }
.mobile-nav-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
.mobile-nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
.mobile-nav-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
@media (max-width: 991px) {
  body.mobile-nav-open {
      overflow: hidden;
    }
  .mobile-nav-toggle {
      display: flex;
    }
  .navbar .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(88vw, 380px);
      height: 100vh;
      margin: 0;
      padding: 92px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      box-shadow: -12px 0 28px rgba(0, 0, 0, 0.14);
      transition: right 0.3s ease;
      z-index: 9997;
      overflow-y: auto;
    }
  .dark-mode .navbar .nav-list {
      background: rgba(36, 36, 36, 0.96);
    }
  .navbar-mobile .nav-list {
      right: 0;
    }
  .navbar .nav-list li {
      margin: 0;
      width: 100%;
    }
  .navbar .nav-list > li > a, .navbar .nav-list > li > a:focus {
      width: 100%;
      padding: 12px 14px;
      border-radius: 10px;
      justify-content: space-between;
      font-size: 15px;
      pointer-events: auto;
    }
  .navbar .dropdown ul {
      display: none;
      position: static;
      margin: 8px 0 0;
      padding: 4px;
      opacity: 1;
      visibility: visible;
      border: 1px solid color-mix(in srgb, var(--nav-color) 15%, transparent);
      border-radius: 10px;
      box-shadow: none;
      background: transparent;
    }
  .navbar .dropdown > .dropdown-active {
      display: block !important;
      font-size: 14px;
    }
  .navbar .language-switcher > a, .navbar .language-switcher > a:focus {
      display: none;
    }
  .navbar .language-switcher > .lang-list {
      display: flex !important;
      flex-wrap: nowrap;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 6px;
      position: relative;
      width: 100%;
      margin: 6px 0 2px;
      padding: 4px 0;
      min-width: unset;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      transform: none;
      transition: none;
      pointer-events: auto;
      overflow: visible;
      white-space: nowrap;
    }
  .dark-mode .navbar .language-switcher > .lang-list {
      border: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
  .navbar .language-switcher > .lang-list::before {
      display: none;
    }
  .navbar .language-switcher > .lang-list li {
      width: 100%;
      flex: 1 1 0;
    }
  .navbar .language-switcher > .lang-list a {
      position: relative;
      z-index: 1;
      width: 100%;
      min-width: 42px;
      border: 1px solid color-mix(in srgb, var(--border-color) 16%, transparent);
      border-radius: 999px;
      padding: 10px 8px;
      color: var(--nav-color);
      background: color-mix(in srgb, var(--bg-color) 88%, #111 6%);
      box-shadow:
        inset 0 1px 0 color-mix(in srgb, #ffffff 18%, transparent),
        0 5px 12px color-mix(in srgb, var(--shadow) 30%, transparent);
      font-size: 12px;
      letter-spacing: 0.08em;
      pointer-events: auto;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
  .navbar .language-switcher > .lang-list a:hover,
  .navbar .language-switcher > .lang-list a:focus-visible {
      color: var(--accent-color);
      border-color: color-mix(in srgb, rgb(var(--logo-warm-focus-rgb)) 12%, var(--border-color) 88%);
      background:
        radial-gradient(circle at 18% 14%, rgba(var(--logo-warm-glow-rgb), 0.12), transparent 38%),
        color-mix(in srgb, var(--bg-color) 82%, #111 10%);
      box-shadow: 0 7px 16px color-mix(in srgb, rgba(var(--logo-warm-shadow-rgb), 0.14) 18%, var(--shadow) 82%);
      transform: translateY(-1px);
    }
  .dark-mode .navbar .language-switcher > .lang-list a:hover,
  .dark-mode .navbar .language-switcher > .lang-list a:focus-visible {
      border-color: color-mix(in srgb, rgb(var(--logo-warm-focus-rgb)) 24%, var(--border-color) 76%);
    }
}
/* Home chat and lead form */
.messenger-chat {
    position: relative;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
  }
.chat-messages {
    min-height: 50px;
  }
.chat-message {
    background: transparent;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 0px;
    margin: 10px 0;
    display: inline-block;
    max-width: 70%;
    animation: slideIn 0.5s ease;
    box-shadow: 0 4px 10px var(--shadow);
  }
@keyframes slideIn {
  from {
      transform: translateY(20px);
      opacity: 0;
    }
  to {
      transform: translateY(0);
      opacity: 1;
    }
}
.chat-options {
    margin-top: 10px;
  }
.chat-option-btn {
    background: transparent;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 0px;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
    transition: border 0.3s ease;
  }
.chat-option-btn:hover {
    border: none;
    border-bottom: 1px solid var(--text-color);
  }
.email-form-home {
    max-width: 320px;
    margin: 20px auto;
    padding-left: auto;
    padding-right: auto;
    background: transparent;
    box-shadow: 0 4px 10px var(--shadow);
    animation: slideIn 0.5s ease forwards;
    display: none;
  }
.email-form-home input[type="text"], .email-form-home input[type="email"], .email-form-home input[type="tel"], .email-form-home select {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0px;
    background: transparent;
    font-size: 16px;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s ease;
  }
.email-form-home input[type="text"]:focus, .email-form-home input[type="email"]:focus, .email-form-home input[type="tel"]:focus, .email-form-home select:focus {
    border-color: var(--text-color);
  }
.email-form-home select:focus {
    background-color: var(--bg-color);
  }
.email-form-home input::placeholder {
    color: var(--text-color);
  }
.contact-method-hint {
    margin: 0 15px 10px;
    color: var(--nav-color);
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
  }
.privacy-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
  }
.privacy-checkbox input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--text-color);
  }
.privacy-checkbox label {
    font-size: 14px;
    color: var(--text-color);
  }
.privacy-checkbox a {
    color: var(--text-color);
    text-decoration: none;
  }
.privacy-checkbox a:hover {
    text-decoration: underline;
  }
.email-form-home .button {
    padding: 10px 20px;
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    border-radius: 999px;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 64%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 46%, #3d3d40 52%, #18181a 100%);
    color: #f5f5f5;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 8px 18px color-mix(in srgb, rgba(0, 0, 0, 0.28) 24%, var(--shadow) 76%);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    animation: form-button-fade-in 0.35s ease-out both;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  }
.email-form-home .button::before,
.email-form-home .button::after {
    display: none;
  }
.email-form-home .button:hover {
    transform: translateY(-1px);
    color: #ffffff;
    filter: brightness(1.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 10px 22px color-mix(in srgb, rgba(0, 0, 0, 0.32) 24%, var(--shadow) 76%);
  }
.email-form-home .button:active {
    transform: translateY(0);
  }
@keyframes form-button-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
  }
.hp-field {
    display: none !important;
  }
/* Service assistant modal */
.sp-chat-launcher {
    appearance: none;
    -webkit-appearance: none;
    position: fixed;
    right: 16px;
    left: auto;
    top: 60%;
    bottom: auto;
    z-index: 997;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    border-radius: 14px;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 64%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 47%, #3f3f42 53%, #171719 100%);
    color: #f5f5f5;
    box-shadow:
      0 8px 22px color-mix(in srgb, rgba(0, 0, 0, 0.28) 24%, var(--shadow) 76%),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    cursor: pointer;
    font-size: 20px;
    transform: translateY(-50%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    animation: sp-chat-launcher-in 0.25s ease-out both;
  }
.sp-chat-launcher::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 44%, rgba(255, 255, 255, 0.04) 52%, transparent 66%);
    opacity: 0.42;
    pointer-events: none;
  }
.sp-chat-launcher i {
    position: relative;
    z-index: 1;
    line-height: 1;
  }
.sp-chat-launcher[hidden] {
    display: none;
  }
.sp-chat-launcher:hover,
.sp-chat-launcher:focus-visible {
    transform: translateY(calc(-50% - 2px));
    color: #ffffff;
    border-color: color-mix(in srgb, #ffffff 28%, #111 72%);
    box-shadow:
      0 10px 26px color-mix(in srgb, rgba(0, 0, 0, 0.34) 24%, var(--shadow) 76%),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
@keyframes sp-chat-launcher-in {
    from { opacity: 0; transform: translateY(calc(-50% + 8px)) scale(0.92); }
    to { opacity: 1; transform: translateY(-50%) scale(1); }
  }
.sp-chat-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1300;
  }
.sp-chat-modal.is-open {
    display: block;
  }
.sp-chat-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 18%, rgba(var(--logo-warm-sheen-rgb), 0.18), transparent 36%),
      rgba(12, 12, 14, 0.56);
    backdrop-filter: blur(4px);
  }
.sp-chat-modal__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(640px, calc(100% - 24px));
    height: min(84vh, 760px);
    margin: 8vh auto 0;
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    background:
      radial-gradient(circle at 16% 0%, rgba(var(--logo-warm-glow-rgb), 0.12), transparent 34%),
      linear-gradient(180deg, color-mix(in srgb, var(--bg-color) 92%, #111 8%) 0%, var(--bg-color) 100%);
    box-shadow:
      0 22px 54px color-mix(in srgb, rgba(var(--logo-warm-shadow-rgb), 0.18) 24%, var(--shadow) 76%),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
    border-radius: 10px;
  }
.sp-chat-modal__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--border-color) 26%, transparent);
    background:
      radial-gradient(circle at 16% 10%, rgba(var(--logo-warm-glow-rgb), 0.16), transparent 42%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 52%, #18181a 100%);
  }
.sp-chat-modal__agent-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #19b26b;
    box-shadow:
      0 0 0 4px rgba(25, 178, 107, 0.18),
      0 0 14px rgba(25, 178, 107, 0.24);
    flex-shrink: 0;
  }
.sp-chat-modal__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #f5f5f5;
  }
.sp-chat-modal__status {
    margin: 2px 0 0;
    font-size: 12px;
    color: rgba(245, 245, 245, 0.72);
    opacity: 1;
  }
.sp-chat-modal__close {
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
    width: 34px;
    height: 34px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }
.sp-chat-modal__close:hover,
.sp-chat-modal__close:focus-visible {
    transform: translateY(-1px);
    background: rgba(var(--logo-warm-glow-rgb), 0.16);
    border-color: rgba(255, 255, 255, 0.2);
  }
.sp-chat-modal__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background:
      radial-gradient(circle at 0% 0%, rgba(var(--logo-warm-glow-rgb), 0.08), transparent 42%),
      radial-gradient(circle at 100% 100%, rgba(20, 20, 22, 0.08), transparent 44%),
      var(--bg-color);
  }
.sp-chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 86%;
    animation: slideIn 0.25s ease;
  }
.sp-chat-msg--bot {
    align-self: flex-start;
  }
.sp-chat-msg--user {
    align-self: flex-end;
    align-items: flex-end;
  }
.sp-chat-msg__bubble {
    padding: 10px 12px;
    line-height: 1.45;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--border-color) 16%, transparent);
    box-shadow: 0 5px 14px color-mix(in srgb, var(--shadow) 46%, transparent);
    word-break: break-word;
    white-space: pre-line;
  }
.sp-chat-msg--bot .sp-chat-msg__bubble {
    background: color-mix(in srgb, var(--bg-color) 84%, #2b2b2e 16%);
    color: var(--text-color);
    border-bottom-left-radius: 4px;
  }
.sp-chat-msg--user .sp-chat-msg__bubble {
    background:
      radial-gradient(circle at 12% 10%, rgba(var(--logo-warm-glow-rgb), 0.12), transparent 42%),
      color-mix(in srgb, var(--bg-color) 76%, #2b2b2e 24%);
    color: var(--text-color);
    border-bottom-right-radius: 4px;
  }
.sp-chat-msg__time {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 3px;
    color: var(--text-color);
  }
.sp-chat-modal__quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid color-mix(in srgb, var(--border-color) 22%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--border-color) 22%, transparent);
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--bg-color) 90%, #111 10%), color-mix(in srgb, var(--bg-color) 96%, #111 4%));
    min-height: 56px;
  }
.sp-chat-quick-btn {
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.06) 46%, transparent 64%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 50%, #18181a 100%);
    color: #f5f5f5;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  }
.sp-chat-quick-btn:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, #ffffff 28%, #111 72%);
    filter: brightness(1.04);
  }
.sp-chat-quick-btn.is-selected {
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.07) 46%, transparent 64%),
      linear-gradient(145deg, #18181a 0%, #343437 52%, #1d1d20 100%);
    color: #ffffff;
    border-color: color-mix(in srgb, #ffffff 34%, #111 66%);
  }
.sp-chat-quick-btn--primary {
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 64%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 48%, #3d3d40 54%, #18181a 100%);
    border-color: color-mix(in srgb, #ffffff 24%, #111 76%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 7px 16px color-mix(in srgb, rgba(0, 0, 0, 0.3) 22%, var(--shadow) 78%);
    font-weight: 700;
  }
.sp-chat-quick-btn--primary:hover,
.sp-chat-quick-btn--primary:focus-visible {
    border-color: color-mix(in srgb, #ffffff 32%, #111 68%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 9px 20px color-mix(in srgb, rgba(0, 0, 0, 0.34) 24%, var(--shadow) 76%);
  }
.sp-chat-quick-btn--done {
    margin-left: auto;
    font-weight: 700;
    border-color: color-mix(in srgb, #ffffff 30%, #111 70%);
  }
.sp-chat-modal__composer {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid color-mix(in srgb, var(--border-color) 18%, transparent);
    background: color-mix(in srgb, var(--bg-color) 96%, #111 4%);
  }
.sp-chat-modal__input {
    flex: 1;
    border: 1px solid color-mix(in srgb, var(--border-color) 32%, transparent);
    background: color-mix(in srgb, var(--bg-color) 94%, #111 6%);
    color: var(--text-color);
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
  }
.sp-chat-modal__input:focus {
    border-color: color-mix(in srgb, rgb(var(--logo-warm-focus-rgb)) 38%, var(--text-color) 62%);
  }
.sp-chat-modal__send {
    width: 42px;
    height: 42px;
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    border-radius: 12px;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.07) 46%, transparent 64%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 50%, #18181a 100%);
    color: #f5f5f5;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  }
.sp-chat-modal__send:not(:disabled):hover,
.sp-chat-modal__send:not(:disabled):focus-visible {
    transform: translateY(-1px);
    color: #ffffff;
    filter: brightness(1.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 8px 18px color-mix(in srgb, rgba(0, 0, 0, 0.32) 22%, var(--shadow) 78%);
  }
.sp-chat-modal__send:disabled, .sp-chat-modal__input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
body.sp-chat-open {
    overflow: hidden;
  }
@media (max-width: 767px) {
  .sp-chat-modal__dialog {
      width: calc(100% - 20px);
      height: min(72svh, 580px);
      max-height: calc(100svh - 32px);
      margin: max(16px, 8svh) auto 0;
      border: 1px solid var(--border-color);
    }
}
@media (max-width: 768px) {
  .email-form-home {
      margin: 10px auto;
      max-width: 300px;
      width: 90%;
    }
  .email-form-home input[type="text"], .email-form-home input[type="email"], .email-form-home input[type="tel"], .email-form-home select {
      font-size: 14px;
    }
  .email-form-home .button {
      font-size: 14px;
      padding: 8px 16px;
    }
}
/* Home hero */
#home {
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: var(--bg-color);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 160px 0 60px 0;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
#home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, color-mix(in srgb, var(--text-color) 3.2%, transparent) 1px, transparent 1px),
      linear-gradient(180deg, color-mix(in srgb, var(--text-color) 2.6%, transparent) 1px, transparent 1px);
    background-size: 88px 88px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
  }
#home::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, color-mix(in srgb, #ffffff 10%, transparent) 0%, transparent 42%, color-mix(in srgb, var(--bg-color) 82%, transparent) 100%),
      linear-gradient(115deg, transparent 0%, color-mix(in srgb, var(--accent-color) 2.6%, transparent) 52%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }
.dark-mode #home {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--bg-color) 86%, #2b2724 14%) 0%, var(--bg-color) 78%),
      radial-gradient(circle at 16% 16%, color-mix(in srgb, #ffffff 5%, transparent), transparent 34%),
      radial-gradient(circle at 86% 20%, color-mix(in srgb, var(--accent-color) 8%, transparent), transparent 32%),
      var(--bg-color);
  }
.dark-mode #home::before {
    opacity: 0.14;
    background:
      linear-gradient(90deg, color-mix(in srgb, #ffffff 3.8%, transparent) 1px, transparent 1px),
      linear-gradient(180deg, color-mix(in srgb, #ffffff 3.2%, transparent) 1px, transparent 1px);
  }
.dark-mode #home::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 42%, color-mix(in srgb, var(--bg-color) 78%, transparent) 100%),
      linear-gradient(115deg, transparent 0%, color-mix(in srgb, var(--accent-color) 4%, transparent) 52%, transparent 100%);
  }
@media (max-width: 575px) {
  #home h1 {
      font-size: 30px;
    }
}
.home-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: var(--text-color);
    overflow: hidden;
    transition: color 0.3s ease;
  }
.container {
    position: relative;
    z-index: 2;
    display: block;
    justify-content: center;
  }

/* Interactive result focus */
.result-focus { max-width: 1080px; margin: 0 auto; }
.result-focus__eyebrow { margin: 0 0 12px; color: var(--accent-color); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.result-focus__title { max-width: 820px; margin: 0 auto; }
.result-focus__title strong { color: var(--accent-color); font-weight: 700; }
.result-focus__intro { max-width: 560px; margin: 20px auto 32px; color: var(--nav-color); font-size: 17px; }
.result-focus__layout { display: grid; grid-template-columns: minmax(260px, .88fr) minmax(360px, 1.12fr); gap: 24px; align-items: stretch; text-align: left; }
.result-focus__choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-content: center; }
.result-focus__choice { display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 12px 14px; border: 1px solid color-mix(in srgb, var(--border-color) 78%, transparent); border-radius: 14px; background: color-mix(in srgb, var(--bg-color) 90%, var(--text-color) 3%); color: var(--text-color); font: inherit; font-size: 14px; font-weight: 600; line-height: 1.2; text-align: left; cursor: pointer; transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.result-focus__choice span { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 9px; background: color-mix(in srgb, var(--text-color) 7%, transparent); color: var(--accent-color); font-size: 17px; }
.result-focus__choice:hover, .result-focus__choice:focus-visible, .result-focus__choice.is-active { border-color: color-mix(in srgb, var(--accent-color) 52%, var(--border-color)); background: color-mix(in srgb, var(--accent-color) 9%, var(--bg-color)); color: var(--accent-color); box-shadow: 0 12px 26px color-mix(in srgb, var(--shadow) 58%, transparent); transform: translateY(-2px); outline: none; }
.result-focus__visual { position: relative; min-height: 310px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--border-color) 72%, transparent); border-radius: 22px; background: radial-gradient(circle at 20% 15%, color-mix(in srgb, var(--accent-color) 15%, transparent), transparent 35%), color-mix(in srgb, var(--bg-color) 88%, var(--text-color) 4%); box-shadow: inset 0 1px color-mix(in srgb, #fff 15%, transparent), 0 22px 46px color-mix(in srgb, var(--shadow) 60%, transparent); }
.result-focus__visual-label { position: absolute; top: 20px; left: 22px; z-index: 4; color: var(--nav-color); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.result-visual { position: absolute; inset: 0; opacity: 0; transform: scale(.92); pointer-events: none; transition: opacity .35s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.result-focus__visual.is-conversion .result-visual--conversion, .result-focus__visual.is-speed .result-visual--speed, .result-focus__visual.is-design .result-visual--design, .result-focus__visual.is-trust .result-visual--trust, .result-focus__visual.is-content .result-visual--content, .result-focus__visual.is-search .result-visual--search { opacity: 1; transform: scale(1); }
.result-visual--conversion { display: flex; align-items: end; justify-content: center; gap: 18px; padding: 78px 54px 52px; }
.result-visual--conversion::after { content: ''; position: absolute; right: 15%; bottom: 18%; width: 64%; height: 47%; border-top: 3px solid var(--accent-color); border-right: 3px solid var(--accent-color); transform: skewY(-25deg) rotate(-4deg); filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent-color) 55%, transparent)); }
.result-visual--conversion i { position: relative; z-index: 1; width: 18%; border-radius: 10px 10px 2px 2px; background: linear-gradient(180deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 28%, transparent)); animation: result-bars 1.05s cubic-bezier(.2,.8,.2,1) both; transform-origin: bottom; }
.result-visual--conversion i:nth-child(1) { height: 28%; animation-delay: .08s; }.result-visual--conversion i:nth-child(2) { height: 47%; animation-delay: .16s; }.result-visual--conversion i:nth-child(3) { height: 70%; animation-delay: .24s; }
.result-visual--conversion b { position:absolute; right: 13%; top: 32%; color: var(--accent-color); font-size: 32px; animation: result-float 1.8s ease-in-out infinite; }
.result-visual--speed { display: grid; place-items: center; }.speed-ring { display: grid; width: 174px; height: 174px; place-content: center; border: 14px solid color-mix(in srgb, var(--accent-color) 18%, transparent); border-top-color: var(--accent-color); border-right-color: var(--accent-color); border-radius: 50%; box-shadow: 0 0 40px color-mix(in srgb, var(--accent-color) 22%, transparent); animation: speed-spin .9s cubic-bezier(.15,.8,.25,1) both; }.speed-ring b { font-size: 46px; line-height: 1; }.speed-ring span { color: var(--accent-color); font-size: 15px; font-weight: 700; text-align: right; }.result-visual--speed > i { position: absolute; width: 125px; height: 4px; border-radius: 9px; background: var(--accent-color); transform: translate(65px, 34px) rotate(-30deg); transform-origin: left; animation: speed-needle .7s .15s both; }
.result-visual--design { background: radial-gradient(circle at 20% 80%, #ff5ba7 0 9%, transparent 30%), radial-gradient(circle at 85% 20%, #5b8cff 0 8%, transparent 31%), radial-gradient(circle at 62% 62%, #ffc857 0 8%, transparent 30%); }.result-visual--design i { position:absolute; display:block; width: 130px; height:130px; border-radius: 36% 64% 50% 50%; background: linear-gradient(135deg,#a768ff,#ff5ba7); mix-blend-mode: screen; animation: design-pop 1.25s ease-in-out infinite alternate; }.result-visual--design i:nth-child(1){left:17%;top:27%;}.result-visual--design i:nth-child(2){right:15%;top:20%;background:linear-gradient(135deg,#27d7d0,#5b8cff);animation-delay:-.42s;}.result-visual--design i:nth-child(3){left:43%;bottom:8%;background:linear-gradient(135deg,#ffb84d,#ff5ba7);animation-delay:-.8s;}.result-visual--design b { position:absolute; left:44%;top:35%; color:#fff; font-size:72px; text-shadow:0 0 24px #fff; animation:result-float 1.5s ease-in-out infinite; }
.result-visual--trust { display:grid; place-items:center; }.trust-card { position:relative; z-index:2; display:grid; width:126px; height:150px; place-items:center; border:1px solid color-mix(in srgb, #fff 45%, transparent); border-radius:24px; background:linear-gradient(145deg,color-mix(in srgb,var(--accent-color) 65%,#fff),var(--accent-color)); color:#fff; box-shadow:0 22px 36px color-mix(in srgb,var(--accent-color) 36%,transparent); font-size:68px; animation:trust-in .8s cubic-bezier(.2,.8,.2,1) both; }.result-visual--trust i { position:absolute; width:260px; height:260px; border:1px solid color-mix(in srgb,var(--accent-color) 44%,transparent); border-radius:50%; animation:trust-rings 2.4s ease-out infinite; }.result-visual--trust i:nth-of-type(2){animation-delay:.8s}.result-visual--trust i:nth-of-type(3){animation-delay:1.6s}
.result-visual--content { display:grid; place-items:center; }.content-window { width:72%; height:62%; padding:26px; border:1px solid color-mix(in srgb,var(--border-color) 78%,transparent); border-radius:16px; background:color-mix(in srgb,var(--bg-color) 76%,#fff 14%); box-shadow:0 18px 36px color-mix(in srgb,var(--shadow) 56%,transparent); }.content-window i { display:block; height:13px; margin:14px 0; border-radius:20px; background:color-mix(in srgb,var(--text-color) 13%,transparent); }.content-window i:nth-child(1){width:43%;background:var(--accent-color);}.content-window i:nth-child(2){width:88%;}.content-window i:nth-child(3){width:65%;}.content-window b { display:block; width:46%; height:48px; margin-top:22px; border-radius:10px; background:var(--accent-color); animation:content-pulse 1.7s ease-in-out infinite; }
.result-visual--search { padding:92px 14% 0; }.search-field { display:flex; align-items:center; gap:12px; height:50px; padding:0 16px; border:1px solid color-mix(in srgb,var(--accent-color) 48%,var(--border-color)); border-radius:12px; color:var(--accent-color); font-size:25px; }.search-field i { display:block; width:48%; height:6px; border-radius:10px; background:color-mix(in srgb,var(--text-color) 22%,transparent); }.result-visual--search > b { display:block; margin:22px 0 16px; color:var(--accent-color); font-size:42px; }.result-visual--search > span { display:block; width:100%; height:10px; margin:12px 0; border-radius:20px; background:color-mix(in srgb,var(--text-color) 12%,transparent); animation:search-lines 1.3s ease both; }.result-visual--search > span:nth-of-type(2){width:72%;animation-delay:.12s}.result-visual--search > span:nth-of-type(3){width:86%;animation-delay:.24s}
@keyframes result-bars { from { transform:scaleY(.08); } to { transform:scaleY(1); } } @keyframes result-float { 50% { transform:translateY(-10px); } } @keyframes speed-spin { from { transform:rotate(-135deg) scale(.6); } to { transform:rotate(0) scale(1); } } @keyframes speed-needle { from { transform:translate(65px,34px) rotate(-105deg) scaleX(.2); } to { transform:translate(65px,34px) rotate(-30deg) scaleX(1); } } @keyframes design-pop { to { transform:translateY(-18px) rotate(28deg) scale(1.14); } } @keyframes trust-in { from { transform:scale(.45) rotate(-18deg); opacity:0; } to { transform:scale(1) rotate(0); opacity:1; } } @keyframes trust-rings { from { transform:scale(.35); opacity:.85; } to { transform:scale(1.35); opacity:0; } } @keyframes content-pulse { 50% { transform:scale(1.08); filter:brightness(1.12); } } @keyframes search-lines { from { transform:scaleX(0); transform-origin:left; } to { transform:scaleX(1); } }
@media (max-width: 767px) { .result-focus__layout { grid-template-columns:1fr; }.result-focus__choices { grid-template-columns:1fr 1fr; }.result-focus__visual { min-height:280px; }.result-focus__intro { font-size:15px; }.result-focus__choice { min-height:54px; font-size:13px; } }
@media (prefers-reduced-motion: reduce) { .result-focus *, .result-focus *::before, .result-focus *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; } }

/* Minimal text-first variation of the result selector */
.result-focus { max-width: 860px; }
.result-focus__eyebrow, .result-focus__intro { display: none; }
.result-focus__title { font-size: calc(1.375rem + 1.5vw); line-height: 1.2; letter-spacing: normal; }
.result-focus__title strong { color: var(--text-color); }
.result-focus__dots { display: inline-flex; gap: .12em; align-items: flex-start; min-height: 1.1em; color: var(--accent-color); letter-spacing: 0; }
.result-focus__dots i { display: block; width: .15em; height: .15em; margin-top: .38em; border-radius: 50%; background: currentColor; animation: result-dot-drop 2.1s ease-in-out infinite; }
.result-focus__dots i:nth-child(2) { animation-delay: .28s; }.result-focus__dots i:nth-child(3) { animation-delay: .56s; }
.result-focus__layout { position: relative; display: block; margin-top: 42px; text-align: center; }
.result-focus__choices { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
.result-focus__choice { position: relative; display: inline-block; min-height: 0; padding: 3px 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; color: var(--text-color); font-size: 16px; font-weight: 500; text-align: center; }
.result-focus__choice::after { content: ''; position: absolute; right: 0; bottom: -3px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.result-focus__choice:hover, .result-focus__choice:focus-visible, .result-focus__choice.is-active { border: 0; background: transparent; box-shadow: none; color: var(--text-color); transform: none; }
.result-focus__choice:hover::after, .result-focus__choice:focus-visible::after { transform: scaleX(1); }
.result-focus__choice:focus-visible { outline: 1px solid var(--accent-color); outline-offset: 6px; }
.result-focus__reaction { position: absolute; z-index: 3; top: 50%; left: 50%; width: 1px; height: 1px; pointer-events: none; }
.result-focus__reaction::before { content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%; opacity: 0; background: conic-gradient(#ff5ba7, #ffc857, #37d7d0, #7788ff, #ff5ba7); transform: translate(-50%, -50%) scale(.2); box-shadow: 0 0 22px #ff5ba7; }
.result-focus__reaction.is-active::before { animation: result-reaction-core .65s ease-out forwards; }
.result-focus__reaction span { position: absolute; left: 0; top: 0; color: var(--particle-color); font-size: 22px; line-height: 1; opacity: 0; text-shadow: 0 4px 13px color-mix(in srgb, var(--particle-color) 55%, transparent); }
.result-focus__reaction.is-active span { animation: result-reaction .82s cubic-bezier(.18,.8,.28,1) forwards; }
.result-focus__reaction span:nth-child(1) { --x: -37px; --y: -51px; --particle-color: #ff5ba7; animation-delay: .02s; }.result-focus__reaction span:nth-child(2) { --x: 39px; --y: -45px; --particle-color: #37d7d0; animation-delay: .07s; }.result-focus__reaction span:nth-child(3) { --x: 4px; --y: -66px; --particle-color: #ffc857; font-size: 14px; animation-delay: .11s; }.result-focus__reaction span:nth-child(4) { --x: 51px; --y: 20px; --particle-color: #8d6bff; animation-delay: .04s; }.result-focus__reaction span:nth-child(5) { --x: -51px; --y: 18px; --particle-color: #ff7b54; animation-delay: .09s; }
@keyframes result-dot-drop { 0%, 52%, 100% { transform: translateY(-.17em); opacity: .36; } 26% { transform: translateY(.18em); opacity: 1; } }
@keyframes result-reaction { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.25); } 20% { opacity: 1; } 100% { opacity: 0; transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.12) rotate(16deg); } }
@keyframes result-reaction-core { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.2); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, -50%) scale(5); } }
@media (min-width: 1200px) { .result-focus__title { font-size: 2.5rem; } }
@media (max-width: 767px) { .result-focus__layout { margin-top: 30px; }.result-focus__choices { gap: 15px 20px; }.result-focus__choice { font-size: 14px; } }
/* Services */
.services-section {
    padding: 80px 0;
    background: var(--bg-color);
}
.dark-mode .services-section {
    background: var(--bg-color);
}
.services-head p {
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--nav-color);
}
.services-carousel {
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 10px 4px 16px;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: default;
    touch-action: auto;
}
.services-carousel::-webkit-scrollbar {
    display: none;
}
.services-carousel.is-dragging {
    cursor: default;
    user-select: none;
}
.service-track {
    display: inline-flex;
    gap: 20px;
    width: max-content;
    min-width: max-content;
    align-items: flex-start;
}
.service-item {
    padding: 28px;
    width: clamp(290px, 36vw, 410px);
    flex: 0 0 clamp(290px, 36vw, 410px);
    min-height: auto;
    height: auto;
    border: none;
    background: transparent;
    transition: box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    scroll-snap-align: none;
    box-shadow:
      0 18px 36px color-mix(in srgb, var(--shadow) 80%, transparent);
    backdrop-filter: blur(8px);
}
.service-item:hover {
    box-shadow:
      0 20px 38px color-mix(in srgb, var(--shadow) 82%, transparent);
}
.service-item::after {
    content: "";
    position: absolute;
    width: 180px;
    height: auto;
    border-radius: 999px;
    right: -58px;
    bottom: -88px;
    filter: blur(34px);
    opacity: 0.65;
    pointer-events: none;
}
.service-item--landing::after {
    background: transparent;
}
.service-item--corp::after {
    background: transparent;
}
.service-item--shop::after {
    background: transparent;
}
.service-info {
    flex: 1;
}
.service-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.service-info p {
    font-size: 15px;
    color: var(--nav-color);
    line-height: 1.6;
}
.service-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.service-tags .badge {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(145deg, #151516 0%, #2e2e31 48%, #3f3f42 54%, #19191b 100%);
    color: #f4f4f4;
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      inset 0 -1px 0 rgba(0, 0, 0, 0.34),
      0 5px 12px color-mix(in srgb, var(--shadow) 48%, transparent);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    margin-right: 0;
    padding: 6px 12px;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.38);
}
.service-tags .badge::before {
    content: "";
    position: absolute;
    inset: 1px 10px auto;
    height: 36%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent);
    pointer-events: none;
}
.dark-mode .service-tags .badge {
    background:
      linear-gradient(145deg, #eeeeef 0%, #c7c7ca 50%, #f6f6f7 100%);
    color: #171719;
    border-color: color-mix(in srgb, #ffffff 40%, #242424 60%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 5px 12px rgba(0, 0, 0, 0.2);
}
.service-points {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    justify-items: center;
}
.service-points li {
    position: relative;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}
.service-points li::before {
    content: none;
}
.service-item-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}
.service-item-footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color) 35%, transparent), transparent);
}
.service-start {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--nav-color);
}
.service-link,
.services-brief-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 15px;
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    border-radius: 999px;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 64%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 48%, #3d3d40 54%, #18181a 100%);
    color: #f5f5f5;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 7px 16px color-mix(in srgb, rgba(0, 0, 0, 0.3) 22%, var(--shadow) 78%);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, border-color 0.22s ease;
}
.services-brief-link {
    min-height: 44px;
    padding: 11px 22px;
    font-size: 13px;
}
.service-link:hover,
.service-link:focus-visible,
.services-brief-link:hover,
.services-brief-link:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
    filter: brightness(1.04);
    border-color: color-mix(in srgb, #ffffff 28%, #111 72%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 9px 20px color-mix(in srgb, rgba(0, 0, 0, 0.34) 24%, var(--shadow) 76%);
}
.service-link:focus-visible,
.services-brief-link:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-color) 38%, transparent);
    outline-offset: 4px;
}
.service-link:active,
.services-brief-link:active {
    transform: translateY(0);
}
.services-steps {
    margin-top: 34px;
}
.services-steps-heading h3 {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: var(--nav-color);
    letter-spacing: 0.2px;
    text-transform: none;
}
.service-step {
    height: 100%;
    background: color-mix(in srgb,  90%, #ffffff 10%)var(--nav-color);
    padding: 18px 18px 16px;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, background-color 0.28s ease;
}
.service-step.is-highlighted {
    border-color: transparent;
    background: color-mix(in srgb, var(--nav-color) 8%, var(--bg-color) 92%);
    box-shadow: 0 14px 28px color-mix(in srgb, var(--shadow) 65%, transparent);
    transform: translateY(-2px);
}
.service-step-num {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--nav-color);
    margin-bottom: 8px;
    transition: color 0.28s ease;
}
.service-step.is-highlighted .service-step-num {
    color: var(--accent-color);
}
.service-step h4 {
    font-size: 17px;
    margin-bottom: 8px;
}
.service-step p {
    margin: 0;
    color: var(--nav-color);
    font-size: 14px;
    line-height: 1.5;
}
@media (max-width: 767px) {
  .service-item {
        width: min(88vw, 360px);
        flex: 0 0 min(88vw, 360px);
        padding: 22px;
    }
  .service-item-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* Cursor effects */
.glow {
    position: fixed;
    left: 0;
    top: 0;
    width: clamp(220px, 24vw, 360px);
    height: clamp(220px, 24vw, 360px);
    border-radius: 50%;
    pointer-events: none;
    background: var(--glow-gradient);
    mix-blend-mode: var(--glow-blend-mode);
    opacity: 0;
    filter: blur(48px);
    transform: translate3d(calc(var(--cursor-x, -999px) - 50%), calc(var(--cursor-y, -999px) - 50%), 0);
    will-change: transform;
    transition: opacity 0.45s ease;
    z-index: 1;
}
body.has-cursor-glow .glow {
    opacity: 0.38;
}
@media (prefers-reduced-motion: reduce) {
  .glow {
    display: none;
  }
}
/* Brief form */
#brief-details {
  padding-top: 120px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(var(--logo-warm-glow-rgb), 0.16) 0%, transparent 38%),
    radial-gradient(circle at 86% 14%, rgba(var(--logo-warm-sheen-rgb), 0.1) 0%, transparent 34%),
    radial-gradient(circle at 76% 88%, rgba(var(--brief-light-line-rgb), 0.08) 0%, transparent 42%),
    linear-gradient(140deg, color-mix(in srgb, var(--brief-light-surface) 86%, #ffffff 14%) 0%, transparent 44%),
    linear-gradient(180deg, #fffdf8 0%, var(--brief-light-surface) 48%, color-mix(in srgb, var(--bg-color) 72%, #ffffff 28%) 100%);
}
#brief-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--brief-light-line-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(var(--brief-light-line-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(var(--logo-warm-shadow-rgb), 0.035) 100%);
  background-size: 46px 46px, 46px 46px, auto;
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}
.dark-mode #brief-details {
  background:
    linear-gradient(135deg, rgba(255, 189, 151, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 14% 8%, rgba(255, 189, 151, 0.11) 0%, transparent 44%),
    radial-gradient(circle at 88% 18%, rgba(87, 143, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 86%, rgba(5, 246, 158, 0.09) 0%, transparent 42%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-color) 86%, #111827 14%) 0%, var(--bg-color) 100%),
    var(--bg-color);
}
.dark-mode #brief-details::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.3) 100%);
  background-size: auto;
  opacity: 1;
}
.brief-form-container {
  max-width: 920px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
    color-mix(in srgb, var(--brief-light-panel) 92%, var(--bg-color) 8%);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(var(--brief-light-line-rgb), 0.2);
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--shadow) 64%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  position: relative;
  z-index: 1;
}
.dark-mode .brief-form-container {
  background: color-mix(in srgb, var(--bg-color) 88%, #ffffff 8%);
  border-color: color-mix(in srgb, var(--border-color) 18%, transparent);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--shadow) 82%, transparent);
}
#brief-details  h1 {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 30px;
}
#brief-details h2 {
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(var(--logo-warm-focus-rgb), 0.36);
  padding-bottom: 5px;
}
.dark-mode #brief-details h2 {
  border-bottom-color: color-mix(in srgb, var(--text-color) 74%, transparent);
}
.brief-progress {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}
.brief-progress-meter {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, color-mix(in srgb, #ffffff 44%, transparent), transparent),
    color-mix(in srgb, var(--text-color) 10%, var(--bg-color) 90%);
  box-shadow: inset 0 1px 2px color-mix(in srgb, var(--text-color) 12%, transparent);
}
.brief-progress-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(105deg, transparent 0%, rgba(var(--logo-warm-sheen-rgb), 0.16) 52%, transparent 100%),
    linear-gradient(145deg, #151516 0%, #353538 48%, #55555a 54%, #202023 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 12px rgba(var(--logo-progress-sheen-rgb), 0.14);
  transition: width 0.25s ease;
}
.dark-mode .brief-progress-meter {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    color-mix(in srgb, #000000 28%, var(--bg-color) 72%);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.38);
}
.dark-mode .brief-progress-meter span {
  background:
    linear-gradient(105deg, transparent 0%, rgba(var(--logo-progress-sheen-rgb), 0.2) 52%, transparent 100%),
    linear-gradient(145deg, #0f0f11 0%, #29292d 48%, #4a4a50 54%, #171719 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 14px rgba(var(--logo-progress-sheen-rgb), 0.12);
}
.brief-step-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.brief-step-nav::-webkit-scrollbar {
  display: none;
}
.brief-step-pill {
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--border-color) 18%, transparent);
  border-radius: 999px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--bg-color) 76%, #ffffff 24%);
  color: var(--head-color);
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.brief-step-pill.is-active,
.brief-step-pill.is-complete {
  border-color: rgba(var(--logo-warm-focus-rgb), 0.36);
  background: color-mix(in srgb, rgb(var(--logo-warm-glow-rgb)) 12%, var(--bg-color) 88%);
  color: var(--text-color);
}
.dark-mode .brief-step-pill.is-active,
.dark-mode .brief-step-pill.is-complete {
  border-color: color-mix(in srgb, var(--sky) 52%, var(--border-color) 20%);
  background: color-mix(in srgb, var(--sky) 14%, var(--bg-color) 86%);
}
.section-brief {
  animation: brief-step-in 0.22s ease both;
}
.brief-wizard-controls {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr minmax(110px, auto);
  gap: 12px;
  align-items: center;
  margin: 20px 0 12px;
}
.brief-step-count {
  color: var(--head-color);
  font-size: 13px;
  text-align: center;
}
#brief-details .brief-wizard-btn {
  width: auto;
  margin: 0;
  padding: 10px 18px;
}
#brief-details .brief-wizard-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}
#brief-details button[type="submit"]:not(.is-visible) {
  display: none;
}
@keyframes brief-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#brief-details  label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 600;
}
#brief-details  input[type="text"], #brief-details  input[type="email"], #brief-details  input[type="url"], #brief-details  select, #brief-details  textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(var(--brief-light-line-rgb), 0.28);
  border-radius: 4px;
  box-sizing: border-box;
  background: color-mix(in srgb, #ffffff 72%, var(--brief-light-surface) 28%);
  color: var(--text-color);
  font-size: 14px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
#brief-details  input[type="text"]:focus, #brief-details  input[type="email"]:focus, #brief-details  input[type="url"]:focus, #brief-details  select:focus, #brief-details  textarea:focus {
  outline: none;
  border-color: rgba(var(--logo-warm-focus-rgb), 0.58);
  box-shadow: 0 0 0 3px rgba(var(--logo-warm-glow-rgb), 0.14);
}
.dark-mode #brief-details input[type="text"],
.dark-mode #brief-details input[type="email"],
.dark-mode #brief-details input[type="url"],
.dark-mode #brief-details select,
.dark-mode #brief-details textarea {
  border-color: color-mix(in srgb, var(--border-color) 22%, transparent);
  background: color-mix(in srgb, var(--bg-color) 72%, var(--text-color) 8%);
}
.dark-mode #brief-details input[type="text"]:focus,
.dark-mode #brief-details input[type="email"]:focus,
.dark-mode #brief-details input[type="url"]:focus,
.dark-mode #brief-details select:focus,
.dark-mode #brief-details textarea:focus {
  border-color: color-mix(in srgb, var(--sky) 72%, var(--text-color) 28%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sky) 18%, transparent);
}
#brief-details  textarea {
  min-height: 100px;
  resize: vertical;
}
.checkbox-group {
  margin-bottom: 15px;
  color: var(--text-color);

}
.checkbox-group label {
  display: inline-block;
  margin-right: 20px;
  font-weight: normal;
  margin-bottom: 10px;
}
.brief-consent {
  margin: 18px 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--brief-light-line-rgb), 0.24);
  border-radius: 6px;
  background: color-mix(in srgb, var(--brief-light-surface) 78%, #ffffff 22%);
}
.brief-consent label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
  font-weight: 500 !important;
  line-height: 1.45;
}
.brief-consent input[type="checkbox"] {
  margin-top: 4px;
  flex: 0 0 auto;
  accent-color: rgb(var(--logo-warm-focus-rgb));
}
.dark-mode .brief-consent {
  border-color: color-mix(in srgb, var(--border-color) 22%, transparent);
  background: color-mix(in srgb, var(--bg-color) 78%, var(--text-color) 8%);
}
.dark-mode .brief-consent input[type="checkbox"] {
  accent-color: color-mix(in srgb, var(--sky) 70%, var(--mint) 30%);
}
.brief-consent a {
  color: var(--text-color);
  text-decoration: underline;
}
input[type="checkbox"] {
  margin-right: 5px;
  color: var(--text-color);
}
#brief-details  button[type="submit"] {
  background: color-mix(in srgb, var(--bg-color) 82%, var(--text-color) 8%);
  color: var(--text-color);
  padding: 12px 30px;
  border: 1px solid color-mix(in srgb, var(--border-color) 26%, transparent);
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: block;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#brief-details  button[type="submit"]:hover {
  background: var(--text-color);
  color: var(--bg-color);
  border-color: color-mix(in srgb, var(--text-color) 70%, transparent);
  transform: translateY(-1px);
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}
@media (max-width: 600px) {
  .brief-form-container {
      padding: 20px;
  }
  h1 {
      font-size: 24px;
  }
  h2 {
      font-size: 20px;
  }
  .checkbox-group label {
      display: block;
      margin-right: 0;
  }
  .brief-wizard-controls {
      grid-template-columns: 1fr 1fr;
  }
  .brief-step-count {
      grid-column: 1 / -1;
      grid-row: 1;
  }
}
/* Thank-you page */
.thank-you {
    padding: 132px 16px 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
  }
.thank-you-container {
    text-align: center;
    width: min(680px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 46px);
    background: color-mix(in srgb, var(--bg-color) 94%, #fff 6%);
    border: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
    border-radius: 8px;
    box-shadow: 0 18px 40px var(--shadow);
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
.thank-you-mark {
    width: 76px;
    aspect-ratio: 1;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #117a4d;
    background: color-mix(in srgb, #2fbf7b 14%, var(--bg-color) 86%);
    border: 1px solid color-mix(in srgb, #2fbf7b 35%, transparent);
    font-size: 34px;
  }
.thank-you-content {
    max-width: 560px;
    margin: 0 auto;
  }
.thank-you-eyebrow {
    margin: 0 0 8px 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--head-color);
  }
.thank-you-container h1 {
    margin: 0 0 14px 0;
    color: var(--text-color);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    font-weight: 700;
  }
.thank-you-message {
    font-size: clamp(16px, 2vw, 19px);
    margin: 0 auto 10px;
    max-width: 62ch;
    color: var(--text-color);
    opacity: 0.9;
  }
.thank-you-next {
    max-width: 58ch;
    margin: 0 auto 26px;
    color: color-mix(in srgb, var(--text-color) 72%, transparent);
    font-size: 15px;
    line-height: 1.6;
  }
.thank-you-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
.thank-you-actions .btn-custom, .thank-you-actions .button {
    margin: 0;
  }
.dark-mode .thank-you-container {
    background: color-mix(in srgb, var(--bg-color) 92%, #111 8%);
  }
.dark-mode .thank-you-mark {
    color: #86efac;
    background: color-mix(in srgb, #2fbf7b 18%, var(--bg-color) 82%);
  }
@media (max-width: 576px) {
  .thank-you {
      padding: 112px 14px 54px;
    }
  .thank-you-actions {
      align-items: stretch;
      flex-direction: column;
    }
  .thank-you-actions .btn-custom, .thank-you-actions .button {
      width: 100%;
      justify-content: center;
    }
}
/* Contact */
#contact {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--bg-color) 88%, #f7f2ec 12%) 0%, var(--bg-color) 72%),
      radial-gradient(circle at 18% 8%, color-mix(in srgb, var(--text-color) 5%, transparent), transparent 34%),
      radial-gradient(circle at 86% 20%, color-mix(in srgb, var(--accent-color) 7%, transparent), transparent 30%),
      var(--bg-color);
    padding: 82px 0px;
    margin-top: 80px;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
.dark-mode #contact {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--bg-color) 86%, #2b2724 14%) 0%, var(--bg-color) 78%),
      radial-gradient(circle at 18% 8%, color-mix(in srgb, #ffffff 5%, transparent), transparent 34%),
      radial-gradient(circle at 86% 20%, color-mix(in srgb, var(--accent-color) 8%, transparent), transparent 32%),
      var(--bg-color);
  }
.contact-assistant {
    padding: 26px;
    
    background:
      linear-gradient(180deg, color-mix(in srgb, #ffffff 5%, transparent) 0%, transparent 100%),
      color-mix(in srgb, var(--bg-color) 94%, var(--text-color) 4%);
    color: var(--text-color);
    text-align: center;
  }
.dark-mode .contact-assistant {
    border-color: color-mix(in srgb, var(--border-color) 36%, transparent);
    background:
      linear-gradient(180deg, color-mix(in srgb, #ffffff 4%, transparent) 0%, transparent 100%),
      color-mix(in srgb, var(--bg-color) 90%, #ffffff 5%);
  }
.contact-assistant--primary {
    padding: clamp(28px, 5vw, 54px);
    border-radius: 8px;
    box-shadow: 0 18px 48px color-mix(in srgb, var(--shadow) 72%, transparent);
  }
.contact-assistant-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--accent-color) 54%, var(--text-color) 46%);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }
.contact-assistant h1 {
    margin: 0 0 14px;
    color: var(--text-color);
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.08;
  }
.contact-assistant p {
    max-width: 620px;
    margin: 0 auto 18px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--nav-color);
  }
.contact-assistant small {
    display: block;
    max-width: 560px;
    margin: 16px auto 0;
    color: color-mix(in srgb, var(--nav-color) 80%, transparent);
    font-size: 12px;
    line-height: 1.5;
  }
.contact-assistant-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid color-mix(in srgb, #ffffff 18%, #111 82%);
    border-radius: 999px;
    color: #f5f5f5;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 64%),
      linear-gradient(145deg, #111113 0%, #2b2b2e 48%, #3d3d40 54%, #18181a 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 8px 18px color-mix(in srgb, rgba(0, 0, 0, 0.3) 22%, var(--shadow) 78%);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, border-color 0.22s ease;
  }
.contact-assistant-link:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, #ffffff 28%, #111 72%);
    color: #ffffff;
    filter: brightness(1.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 10px 22px color-mix(in srgb, rgba(0, 0, 0, 0.34) 24%, var(--shadow) 76%);
  }
.contact-assistant-link:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-color) 38%, transparent);
    outline-offset: 4px;
  }
.contact-assistant-link:active {
    transform: translateY(0);
  }
.form-control {
    background-color: transparent;
  }
.required {
    color: #dc3545;
  }
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
  }
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }
.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
  }
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
/* Footer */
#footer {
    background: var(--bg-color);
    padding: 30px 0;
    color: var(--text-color);
    font-size: 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
#footer .footer-links {
    padding-left: 0;
  }
.privacy-policy {
    display: inline-block;
    color: var(--accent-color);
    padding-top: 10px;
    transition: color 0.5s linear;
  }
.privacy-policy:hover {
    color: var(--text-color);
  }
#footer .footer-links a:first-child {
    padding-left: 0;
  }
#footer .social-links a {
    padding-left: 15px;
    font-size: 16px;
    color: var(--text-color);
    transition: color 0.5s linear;
  }
/* Privacy policy */
#privacy-policy {
    padding-top: 80px;
    display: flex;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    height: auto;
    max-width: 800px;
    margin: 120px auto;
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0px 0px 30px var(--shadow);
    transition: background-color 0.3s ease;
  }
#privacy-policy h2 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 20px;
  }
#privacy-policy ul {
    list-style-type: none;
    padding: 0;
  }
#privacy-policy ul li {
    font-size: 16px;
    color: var(--text-color);
    margin: 10px 0;
  }
@media (max-width: 768px) {
  #privacy-policy h2 {
      font-size: 24px;
    }
}
/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 22px;
    left: 20px;
    right: 20px;
    max-width: 430px;
    padding: 16px 16px 14px;
    border: none;
    background: transparent;
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    color: var(--text-color, #333);
    box-shadow:
      0 18px 40px color-mix(in srgb, var(--shadow) 85%, transparent),
      inset 0 1px 0 color-mix(in srgb,  transparent);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 1000;
}
.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}
.cookie-link {
    color: color-mix(in srgb, var(--text-color) );
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}
.cookie-link:hover {
    color: color-mix(in srgb, #117a4d 24%, var(--text-color) 76%);
    opacity: 0.86;
    transform: translateY(-1px);
}
.cookie-buttons {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}
.cookie-btn {
  background: color-mix(in srgb, #ffffff 16%, transparent);
  color: var(--text-color);
  padding: 8px 14px;
  margin: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.cookie-btn.accept {
  background:  transparent;
}
.cookie-btn.decline {
  background:  transparent;
}
.cookie-btn.accept:hover {
  transform: translateY(-1px);
  color: var(--text-color);
  background: transparent;
  box-shadow: none;
}
.cookie-btn.decline:hover {
  transform: translateY(-1px);
  color: var(--text-color);
  background: transparent;
  box-shadow: none;
}
.cookie-banner.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
@media (max-width: 576px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 14px 12px;
  }
}
.gtm-noscript {
    display: none;
    visibility: hidden;
}
