:root {
  --white: #ffffff;
  --black: #000000;
  --charcoal: #1a1a1a;
  --light-gray: #f2f2f2;
  --mid-gray: #d9d9d9;
  --menu-start: 40vw;
  --brand-logo-size: 52px;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000000;
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.95s ease;
}

body.scrolled .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--light-gray);
}

body.scrolled .nav__links > .nav__item > a {
  color: var(--black) !important;
}

body.scrolled .burger span {
  background: var(--black) !important;
}

body.scrolled .nav__brand .logo--light {
  opacity: 0;
}

body.scrolled .nav__brand .logo--dark {
  opacity: 1;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px 60px;
  gap: 32px;
  position: relative;
}

.nav__brand {
  position: relative;
  width: 170px;
  height: var(--brand-logo-size);
}

.nav__brand .logo {
  position: absolute;
  top: 0;
  left: 30px;
  height: var(--brand-logo-size);
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.nav__brand .logo--dark {
  opacity: 0;
}

.site-header.mega-open .nav__brand .logo--light {
  opacity: 0;
}

.site-header.mega-open .nav__brand .logo--dark {
  opacity: 1;
}

.nav__links {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  font-size: 18px;
  align-items: center;
  margin-left: calc(var(--menu-start) - 110px);
}

.nav__links > .nav__item > a {
  position: relative;
  padding-bottom: 4px;
}

.nav__item {
  position: relative;
}

.mega {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 32px 60px 20px;
  display: none;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: stretch;
  z-index: 20;
}

.mega__section {
  display: none;
  gap: 48px;
  grid-template-columns: var(--menu-start) 1fr;
  align-items: center;
  min-width: 0;
  width: 100%;
}

.mega__section--professional {
  display: grid;
}

.mega__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 22px;
  padding-right: 20px;
}

.mega__intro p {
  color: #8b8b8b;
}

.mega__tiles {
  display: flex;
  gap: 16px;
  height: 260px;
  width: 100%;
  max-width: 100%;
  margin-left: 50px;
  justify-content: flex-start;
  min-width: 0;
}

.mega__tile {
  flex: 1 1 0%;
  min-width: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: #cfcfcf;
  transition: flex-grow 0.35s ease, filter 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mega__tile-label {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: font-size 0.3s ease;
  display: block;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  position: relative;
  z-index: 1;
}

.mega__tiles:hover .mega__tile {
  flex-grow: 0.7;
}

.mega__tiles .mega__tile:hover {
  flex-grow: 1.6;
}

.mega__tile--blur {
}

.mega__tiles .mega__tile--blur:hover {
}

.mega__tile-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1);
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
  z-index: 0;
  display: block;
}

.mega__tiles .mega__tile:hover .mega__tile-media {
  filter: grayscale(0);
  transform: scale(1.02);
}

.mega__tile-media--overview-leisure {
  background-position: calc(50% - 50px) center;
}

.mega__tile-media--volster-f {
  background-position: calc(50% - 20px) center;
}

.mega__tile-media--volster-e {
  transform: scale(1.5);
}

.mega__tiles .mega__tile:hover .mega__tile-media--volster-e {
  transform: scale(1.55);
}
.mega__tile--foiling .mega__tile-media {
  background-position: center;
  background-size: cover;
}

.mega__tiles .mega__tile--foiling:hover .mega__tile-media {
  background-position: center;
  transform: scale(1.02);
}

.mega__tile-media--blur {
  filter: grayscale(1) blur(2px);
}

.mega__tiles .mega__tile:hover .mega__tile-media--blur {
  filter: grayscale(0) blur(2px);
  transition: filter 0.35s ease;
}

.mega__tiles:hover .mega__tile:not(:hover) .mega__tile-label {
  font-size: 10px;
}

.mega__tiles .mega__tile:hover .mega__tile-label {
  font-size: 18px;
}

.mega__tiles .mega__tile:nth-child(1) { background: #7f8c8d; }
.mega__tiles .mega__tile:nth-child(2) { background: #95a5a6; }
.mega__tiles .mega__tile:nth-child(3) { background: #8e9eab; }
.mega__tiles .mega__tile:nth-child(4) { background: #b0b7bd; }

.mega__menu {
  display: grid;
  gap: 10px;
  text-align: right;
  font-size: 14px;
  justify-self: end;
}

.mega__menu a {
  color: var(--black);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  justify-self: end;
  background-image: linear-gradient(var(--black), var(--black));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
}

.mega__menu a:hover {
  background-size: 100% 1px;
}

.mega__bottom {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.mega__socials {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.mega__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mega__socials svg {
  width: 20px;
  height: 20px;
  fill: #777;
}

.nav__burger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-toggle {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: inherit;
}

.site-header:not(.mega-open) .lang-toggle {
  color: var(--white);
}

.site-header.mega-open .lang-toggle {
  color: var(--black);
}

.burger {
  width: 54px;
  height: 32px;
  border: none;
  border-radius: 4px;
  background: transparent;
  display: grid;
  gap: 6px;
  padding: 8px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 999px;
}

.site-header.mega-open .burger span {
  opacity: 0;
}

.site-header.mega-open .burger::before {
  content: '×';
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-4px);
}

.site-header:not(.mega-open) .nav__links > .nav__item > a {
  color: var(--white);
}

.site-header:not(.mega-open) .burger span {
  background: var(--white);
}

/* Default menu color (gray) */
.site-header .nav__links > .nav__item > a {
  color: #8b8b8b !important;
}

/* Hover turns black */
.site-header .nav__links > .nav__item:hover > a {
  color: #000000 !important;
}

/* Active (current section) should be black, others gray */
.site-header[data-active="professional"] .nav__item--professional > a,
.site-header[data-active="leisure"] .nav__item--leisure > a,
.site-header[data-active="technology"] .nav__item--technology > a {
  color: #000000 !important;
}

/* Force inactive items gray based on active section */
.site-header[data-active="professional"] .nav__item:not(.nav__item--professional) > a,
.site-header[data-active="leisure"] .nav__item:not(.nav__item--leisure) > a,
.site-header[data-active="technology"] .nav__item:not(.nav__item--technology) > a {
  color: #8b8b8b !important;
}

.site-header.mega-open {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--light-gray);
}

.site-header.mega-open .mega {
  display: grid;
}

.site-header[data-active="professional"] .mega__section { display: none; }
.site-header[data-active="professional"] .mega__section--professional { display: grid; }
.site-header[data-active="leisure"] .mega__section { display: none; }
.site-header[data-active="leisure"] .mega__section--leisure { display: grid; }
.site-header[data-active="technology"] .mega__section { display: none; }
.site-header[data-active="technology"] .mega__section--technology { display: grid; }

.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 55%);
  z-index: 1;
}

.hero__content {
  position: relative;
  max-width: 820px;
  padding: 0 24px;
  z-index: 2;
  transform: translate(350px, 200px);
  text-align: left;
  color: #ffffff;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero h1 {
  font-size: clamp(36.48px, 4.56vw, 61.56px);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -3px;
}

.hero p {
  font-size: 14px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero__subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 22px;
}

.hero__subtitle--plain {
  display: block;
}

.hero__subtitle--match {
  font-size: clamp(36.48px, 4.56vw, 61.56px) !important;
  font-weight: 500;
  margin-top: 0px;
  line-height: 1;
}

.hero__stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  font-size: 16px;
}

body.volster-hero .hero__content {
  transform: translate(350px, 150px);
}

body.volster-hero .hero h1 {
  line-height: 0.3;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__stat-text {
  display: grid;
  line-height: 1.1;
}

.hero__stat-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__stat-value {
  font-size: 16px;
  font-weight: 500;
}

.hero__icon {
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  flex: 0 0 54px;
  background-color: rgba(255, 255, 255, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
}

.hero__icon--speed {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 3a9 9 0 0 0-9 9h2a7 7 0 1 1 14 0h2a9 9 0 0 0-9-9z'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cpath d='M13.7 10.3l4.2-4.2-1.4-1.4-4.2 4.2z'/%3E%3C/svg%3E");
}

.hero__icon--people {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zM4 20a8 8 0 0 1 16 0z'/%3E%3C/svg%3E");
}

.hero__icon--fuel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 3h8a2 2 0 0 1 2 2v16H5V5a2 2 0 0 1 2-2zm8 4V5H9v2h6zm3 6h2v6a2 2 0 0 1-2 2h-1v-2h1z'/%3E%3Cpath d='M10 9h4v7h-4z'/%3E%3C/svg%3E");
}

.hero__subtitle img {
  width: 18px;
  height: 12px;
  display: block;
}

body.hero-hidden .hero__content {
  opacity: 0;
  transform: translate(350px, 130px);
  pointer-events: none;
}

.post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 60px 20px;
}

.post-hero__left {
  min-height: 240px;
}

.post-hero__right {
  margin-left: -20px;
  margin-top: 110px;
  max-width: 820px;
  font-size: 18px;
  line-height: 1;
  color: #000000;
}

.post-hero__title {
  font-size: 38.4px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.post-hero__right p {
  margin-bottom: 32px;
}

.post-hero__link {
  display: inline-block;
  font-size: 18px;
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.post-hero__link:hover {
  color: #8b8b8b;
}

.solarvess-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 160px 60px 80px;
}

.solarvess-gallery__item {
  transform: scaleX(0.99);
  overflow: hidden;
  height: 520px;
}

.solarvess-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;  object-position: top;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.solarvess-gallery__item:hover img {
  transform: scale(1.1);
}

.solarvess-captions {
  margin-top: -65px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
  gap: 15px;
  padding: 0px 60px 80px;
}

.solarvess-caption {
  display: contents;
}

.solarvess-caption h3 {
  font-size: 26.4px;
  margin-bottom: 12px;
  color: #000000;
  margin-left: 10px;
}

.solarvess-caption__body {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
}

.solarvess-caption p {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  max-width: 400px;
  margin-bottom: 32px;
}

.solarvess-caption__link {
  font-size: 16px;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.solarvess-caption__link:hover {
  color: #ffffff;
}

.solarvess-spotlight {
  padding: 0px 60px;
}

.solarvess-spotlight--volster {
  margin-top: 0px;
}

.solarvess-spotlight + .solarvess-spotlight {
  margin-top: 15px;
}

.solarvess-spotlight__media {
  position: relative;
  overflow: hidden;
  height: 760px;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
}

.solarvess-spotlight__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;  object-position: top center;
}

.solarvess-spotlight__content {
  position: absolute;
  left: 870px;
  top: 50%;
  transform: translateY(calc(-50% - 250px));
  color: #ffffff;
  max-width: 420px;
  text-align: left;
}

.solarvess-spotlight--solarvess .solarvess-spotlight__content {
  transform: translateY(calc(-50% - 250px));
}

.solarvess-spotlight--volster .solarvess-spotlight__content {
  transform: translateY(calc(-50% - 250px));
}

.solarvess-spotlight--volster-e .solarvess-spotlight__content {
  left: 870px;
  transform: translateY(calc(-50% - 250px));
}

.solarvess-spotlight__content h3 {
  font-size: 56px;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1;
}

.solarvess-spotlight__content p {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1;
  white-space: nowrap;
}

.solarvess-spotlight--volster-e .solarvess-spotlight__content h3 {
  color: #5f5f5f !important;
}

.solarvess-spotlight--volster-e .solarvess-spotlight__content p {
  color: #000000 !important;
}

.solarvess-spotlight--volster-e .solarvess-spotlight__actions .btn--outline-dark {
  color: #000000 !important;
  border-color: #000000 !important;
  background: transparent;
}

.solarvess-spotlight__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.founder-block {
  background: #f2f2f2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 120px;
  padding: 0;
}

.founder-block__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  min-height: 720px;
  padding: 0 60px;
  gap: 40px;
}

.founder-block__image {
  width: 100%;
  max-width: 680px;
  height: auto;
  justify-self: start;
  align-self: end;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.founder-block__content {
  color: #000000;
  font-size: 18px;
  line-height: 1.6;
  width: 80%;
  margin-left: 60px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  position: relative;
}

.founder-block__content p {
  font-size: 24.8px;
  line-height: 1.2;
}

.founder-block__quote {
  position: absolute;
  left: -156px;
  top: -32px;
  font-size: 220px;
  color: #1f5eff;
  line-height: 1;
}

.founder-block__name {
  margin-top: 24px;
  font-size: 14px;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.founder-block__title {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
}

.founder-block__inner.is-visible .founder-block__image,
.founder-block__inner.is-visible .founder-block__content {
  opacity: 1;
  transform: translateX(0);
}

.btn--blue {
  background: #1f5eff;
  border: 1px solid #1f5eff;
  color: #ffffff;
}

.btn--outline-light {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn--outline-dark {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
}

.video-shell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.video-shell > iframe,
.video-shell > video {
  display: block;
  width: 100%;
  height: 100%;
}

.video-offline {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  text-align: center;
  z-index: 5;
  padding: 24px;
}

.video-offline.is-visible {
  display: flex;
}

.video-offline__content {
  max-width: 520px;
}

.video-offline__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.video-offline__text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.video-offline__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mission {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.mission p {
  max-width: 640px;
  font-size: 18px;
  color: #000000;
}

.z-grid {
  display: grid;
  gap: 80px;
  padding: 40px 60px -15px;
}

.z-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  align-items: center;
}

.latest {
  padding: 100px 60px 120px;
}

.latest__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.latest__title {
  font-size: 33.6px;
  color: #8b8b8b;
  font-weight: 400;
}

.latest__view-all {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.latest__card {
  display: block;
  color: inherit;
}

.latest__image {
  width: 100%;
  height: 300px;
  background: #e6e6e6;
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  margin-bottom: 16px;
}

.latest__card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #000000;
}

.latest__card p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 12px;
}

.latest__link {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 13px;
}

.tech-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
}

.tech-hero__media {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.tech-hero__content {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 70px;
  transform: translate(-50%, 0);
  color: #ffffff;
  max-width: 520px;
  text-align: center;
}

.tech-hero__label {
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tech-hero__content h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #cfcfcf;
}

.blog-latest {
  padding: 80px 60px 120px;
}

.blog-latest__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.blog-latest__title {
  font-size: 33.6px;
  color: #8b8b8b;
  font-weight: 400;
}

.blog-latest__view-all {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-latest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-latest__card {
  display: block;
  color: inherit;
}

.blog-latest__image {
  width: 100%;
  height: 280px;
  background: #e6e6e6;
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  margin-bottom: 16px;
}

.blog-latest__date {
  font-size: 12px;
  color: #000000;
  margin-bottom: 8px;
}

.blog-latest__text {
  font-size: 14px;
  color: #000000;
  margin-bottom: 12px;
}

.blog-latest__link {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 13px;
}

.newsletter-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e6e6e6;
  margin-top: 100px;
  padding: 120px 0;
}

.newsletter-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.newsletter-band__title {
  font-size: 43.7px;
  color: #555555;
  margin-bottom: 20px;
}

.newsletter-band__success {
  color: #000000;
  font-size: 20.8px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-form__row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
}

.newsletter-form__row--inline {
  grid-template-columns: 1fr;
}

.newsletter-form__field {
  display: grid;
  gap: 6px;
}

.newsletter-form__field--submit {
  position: relative;
  margin-bottom: 26px;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 18.2px;
  color: #000000;
  border-radius: 6px;
}

.newsletter-form__field--submit input {
  padding-right: 140px;
}

.newsletter-form__field--submit .btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 18px;
}

.newsletter-form input::placeholder {
  color: #9b9b9b;
}

.newsletter-form__error {
  color: #d62828;
  font-size: 15.6px;
  display: none;
}

.newsletter-form__error.is-visible {
  display: block;
}

.newsletter-form__error--center {
  text-align: center;
}

.newsletter-form__field--submit .newsletter-form__error {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  width: 100%;
  text-align: center;
}

.newsletter-form__extra .newsletter-form__row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-form__row--full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-form__row--country {
  margin-top: 12px;
  grid-template-columns: 1fr;
}

.newsletter-form__field--country {
  grid-column: 1 / -1;
}

.newsletter-form__consent {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 15.6px;
  color: #000000;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  justify-content: flex-start;
  margin-left: 0;
  margin-top: 10px;
}

.newsletter-form__consent span {
  display: block;
  max-width: 100%;
}

.newsletter-form__consent input[type='checkbox'] {
  width: 40px;
  height: 40px;
}

.newsletter-form__consent a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-form__recaptcha {
  font-size: 15.6px;
  color: #666666;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.newsletter-form__recaptcha a {
  color: #1f5eff;
  text-decoration: none;
}

.newsletter-form__recaptcha a:hover {
  text-decoration: underline;
}

.mega-static {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 60px 0 80px;
}

.mega-static__nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  margin-left: 0;
  margin-right: 0;
  padding: 0 60px;
}

.mega-static__brand {
  display: inline-flex;
  align-items: center;
  margin-left: 40px;
}

.mega-static__brand img {
  height: var(--brand-logo-size);
  width: auto;
  display: block;
}

.mega-static__tabs {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-left: calc(var(--menu-start) - 15px);
}

.mega-static__tab {
  background: transparent;
  border: none;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 1px;
  color: #8b8b8b;
  cursor: pointer;
}

.mega-static__tab.is-active {
  color: #ffffff;
}

.mega-static--dark {
  background: #000000;
  padding-bottom: 0;
}

.mega-static--dark .mega {
  position: static;
  transform: none;
  width: 100%;
  display: grid;
  background: #000000;
  border-color: #222222;
}

.mega-static--dark .mega__intro p,
.mega-static--dark .mega__copy,
.mega-static--dark .mega__menu a,
.mega-static--dark .mega__tile-label,
.mega-static--dark .mega__socials svg {
  color: #ffffff;
  fill: #ffffff;
}

.mega-static--dark .mega__intro p {
  color: #bfbfbf;
}

.mega-static--dark .mega__menu a {
  background-image: linear-gradient(#ffffff, #ffffff);
}

.mega-static--dark .mega__bottom {
  border-top: 1px solid #222222;
}

.mega-static .mega__section--professional,
.mega-static .mega__section--leisure,
.mega-static .mega__section--technology {
  display: none;
}

.mega-static[data-active="professional"] .mega__section--professional,
.mega-static[data-active="leisure"] .mega__section--leisure,
.mega-static[data-active="technology"] .mega__section--technology {
  display: grid;
}

.policy {
  padding: 140px 60px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.policy h1 {
  font-size: 34px;
  margin-bottom: 20px;
}

.policy h2 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy p {
  margin-bottom: 14px;
  color: #222222;
  line-height: 1.6;
}

.policy-link {
  color: #1f5eff;
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

.faq-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 60px 0;
}

.faq-hero {
  margin-bottom: 40px;
}

.faq-hero h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #111111;
  margin-bottom: 14px;
}

.faq-hero p {
  max-width: 760px;
  color: #4c4c4c;
  font-size: 18px;
}

.faq-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.faq-filter {
  border: 1px solid #d2d2d2;
  background: #ffffff;
  color: #666666;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-filter:hover,
.faq-filter.is-active {
  color: #111111;
  border-color: #111111;
}

.faq-list {
  border-top: 1px solid #e3e3e3;
}

.faq-item {
  display: none;
  border-bottom: 1px solid #e3e3e3;
}

.faq-item.is-visible {
  display: block;
}

.faq-item__question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 24px;
  color: #111111;
  padding: 22px 0;
  cursor: pointer;
}

.faq-item__icon {
  font-size: 24px;
  color: #8a8a8a;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer p {
  color: #3d3d3d;
  font-size: 17px;
  line-height: 1.55;
  max-width: 920px;
  padding: 0 0 22px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 520px;
  width: min(520px, 90vw);
  background: #ffffff;
  padding: 24px;
  border: 1px solid #dddddd;
  z-index: 1001;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.cookie-banner__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000000;
}

.cookie-banner__subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000000;
}

.cookie-banner p {
  font-size: 13px;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 14px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  filter: grayscale(1);
  z-index: 1000;
  pointer-events: all;
}

body.cookie-open .cookie-overlay {
  display: block;
}

body.cookie-open main,
body.cookie-open header,
body.cookie-open footer {
  pointer-events: none;
  filter: grayscale(1);
}

body.cookie-open .cookie-banner {
  pointer-events: auto;
  filter: none;
}

.z-item.reverse {
  direction: rtl;
}

.z-item.reverse .z-item__text,
.z-item.reverse .z-item__media {
  direction: ltr;
}

.z-item__media {
  background: var(--light-gray);
  height: 360px;
  border-radius: 8px;
}

.z-item__text h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.link {
  display: inline-block;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--light-gray);
  padding: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__grid h4 {
  font-size: 14px;
  margin-bottom: 32px;
}

.footer__grid a {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #000000;
}

.newsletter {
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
}

.footer__bottom {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.page {
  padding: 120px 60px 80px;
}

.page--split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.page__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  filter: grayscale(1);
}

.page__content h1 {
  font-size: 38.4px;
  margin-bottom: 12px;
}

.page__content p {
  margin-bottom: 24px;
  color: #555;
}

.form {
  display: grid;
  gap: 15px;
}

.form input,
.form textarea {
  padding: 12px 14px;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  font-family: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.btn--outline {
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
}

.btn--solid {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.lang {
  background: transparent;
  border: 1px solid var(--mid-gray);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
}

.phone-link {
  pointer-events: none;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 24px;
  }

  .nav__links {
    display: none;
  }

  .z-item {
    grid-template-columns: 1fr;
  }

  .z-item.reverse {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .phone-link {
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    flex-direction: column;
  }
}
.site-header.mega-open .nav__links > .nav__item:hover > a {  color: #000000;}
.mega__menu a:hover {  color: #000000;  background-size: 100% 1px;}
body.scrolled .nav__links > .nav__item:hover > a {  color: #000000 !important;}
body.scrolled .site-header .nav__links > .nav__item > a {  color: #8b8b8b !important;}
body.scrolled .site-header .nav__links > .nav__item:hover > a {  color: #000000 !important;}

/* Force gray menu text while scrolled */
body.scrolled .site-header .nav__links > .nav__item > a,
body.scrolled .site-header[data-active="professional"] .nav__item--professional > a,
body.scrolled .site-header[data-active="leisure"] .nav__item--leisure > a,
body.scrolled .site-header[data-active="technology"] .nav__item--technology > a {
  color: #8b8b8b !important;
}

body.scrolled .site-header .nav__links > .nav__item:hover > a {
  color: #000000 !important;
}

.spotlight--volster { object-position: top; }
.solarvess-spotlight__content,.solarvess-spotlight__content h3,.solarvess-spotlight__content p,.solarvess-spotlight__actions .btn,.solarvess-spotlight__actions .btn--blue,.solarvess-spotlight__actions .btn--outline-light {  color: #ffffff !important;}

.post-hero__title--gray { color: #8b8b8b !important; }

.post-hero__title--gray { color: #8b8b8b !important; }
.post-hero__link {  text-decoration: underline;}.post-hero__link:hover {  color: #8b8b8b;}

/* Global responsive layer */
@media (max-width: 1200px) {
  :root {
    --menu-start: 44vw;
  }

  .hero__content {
    left: 220px;
  }

  .post-hero {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
  }

  .solarvess-spotlight__content {
    right: 60px;
  }
}

@media (max-width: 992px) {
  :root {
    --menu-start: 38vw;
    --brand-logo-size: 42px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    backdrop-filter: none;
  }

  body.scrolled .site-header,
  .site-header.mega-open {
    backdrop-filter: saturate(120%) blur(4px);
  }

  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .nav__brand {
    width: 140px;
  }

  .nav__links {
    gap: 16px;
    margin-left: 12px;
    font-size: 14px;
    justify-content: flex-start;
  }

  .mega,
  .site-header.mega-open .mega {
    display: none !important;
  }

  .hero__content {
    left: 30px;
    right: 24px;
    top: auto;
    bottom: 22vh;
    transform: none;
    max-width: 680px;
  }

  .hero__content h1 {
    font-size: clamp(30px, 7vw, 54px);
    line-height: 1.02;
  }

  .hero__subtitle {
    margin-top: 10px;
    font-size: clamp(14px, 2.6vw, 22px);
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 420px;
  }

  .post-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 56px 20px 10px;
  }

  .post-hero__right {
    margin-left: 0;
    max-width: 100%;
  }

  .solarvess-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 40px;
  }

  .solarvess-gallery__item {
    transform: none;
  }

  .solarvess-captions {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 14px;
  }

  .solarvess-caption__body {
    grid-template-columns: 1fr;
  }

  .solarvess-spotlight,
  .solarvess-spotlight--volster,
  .solarvess-spotlight + .solarvess-spotlight {
    margin-top: 20px;
  }

  .solarvess-spotlight__media {
    min-height: 540px;
  }

  .solarvess-spotlight__content,
  .solarvess-spotlight--solarvess .solarvess-spotlight__content,
  .solarvess-spotlight--volster .solarvess-spotlight__content,
  .solarvess-spotlight--volster-e .solarvess-spotlight__content {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 30px;
    transform: none;
    max-width: 90%;
  }

  .solarvess-spotlight__content h3 {
    font-size: clamp(26px, 7vw, 42px);
  }

  .solarvess-spotlight__content p {
    font-size: clamp(16px, 2.4vw, 22px);
    white-space: normal;
  }

  .solarvess-spotlight__actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .founder-block {
    margin-top: 70px;
    min-height: auto;
    padding: 32px 0;
  }

  .founder-block__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }

  .founder-block__image {
    width: min(100%, 420px);
    justify-self: center;
  }

  .founder-block__content {
    margin-left: 0;
    max-width: 100%;
  }

  .tech-hero {
    min-height: 68vh;
  }

  .tech-hero__content {
    left: 20px;
    right: 20px;
    bottom: 36px;
  }

  .blog-latest {
    padding: 70px 20px 0;
  }

  .blog-latest__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .newsletter-band {
    margin-top: 70px;
    min-height: auto;
    padding: 40px 0;
  }

  .newsletter-band__inner {
    max-width: 92%;
    padding: 0 4px;
  }

  .newsletter-form__row,
  .newsletter-form__row--inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-form__field--submit button {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .newsletter-form__field--submit input {
    padding-right: 16px;
  }

  .newsletter-form__consent {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .mega-static {
    padding-top: 40px;
  }

  .mega-static__nav {
    padding: 0 20px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .mega-static__brand {
    margin-left: 0;
  }

  .mega-static__tabs {
    margin-left: 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .mega-static__tab {
    font-size: 14px;
  }

  .mega-static--dark .mega {
    padding: 14px 20px 0;
  }

  .mega-static .mega__section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-static .mega__tiles {
    min-height: 300px;
  }

  .mega-static .mega__menu {
    justify-self: stretch;
    text-align: left;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-static .mega__bottom {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-page {
    padding: 110px 20px 0;
  }

  .faq-hero h1 {
    font-size: 36px;
  }

  .faq-item__question {
    font-size: 20px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .hero__content {
    bottom: 18vh;
  }

  .hero__subtitle {
    line-height: 1.15;
  }

  .blog-latest__grid {
    grid-template-columns: 1fr;
  }

  .solarvess-spotlight__media {
    min-height: 460px;
  }

  .solarvess-spotlight__content {
    left: 16px;
    right: 16px;
    bottom: 22px;
  }

  .faq-filter {
    font-size: 13px;
    padding: 8px 12px;
  }

  .faq-item__question {
    font-size: 18px;
    padding: 16px 0;
  }

  .faq-item__answer p {
    font-size: 15px;
    padding-bottom: 16px;
  }
}

