:root {
  --background: 0 0% 100%;
  --foreground: 210 20% 15%;
  --card: 0 0% 100%;
  --card-foreground: 210 20% 15%;
  --primary: 197 100% 62%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 20% 96%;
  --secondary-foreground: 210 20% 15%;
  --muted: 210 20% 96%;
  --muted-foreground: 210 10% 45%;
  --accent: 197 100% 95%;
  --accent-foreground: 197 100% 35%;
  --border: 210 20% 90%;
  --ring: 197 100% 62%;
  --section-dark: 210 25% 12%;
  --section-dark-foreground: 0 0% 95%;
  --surface-soft: 197 100% 98%;
  --shadow: 210 30% 15% / 0.12;
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.7rem 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.topbar__contact,
.topbar__email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: hsl(var(--background) / 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid hsl(var(--border));
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__subtitle {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav__links a {
  color: hsl(var(--muted-foreground));
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: hsl(var(--foreground));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(197 100% 55%));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 18px 40px hsl(var(--shadow));
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 50px hsl(var(--shadow));
}

.button--outline {
  border: 1px solid hsl(var(--primary-foreground) / 0.45);
  color: hsl(var(--primary-foreground));
  background: transparent;
}

.button--outline-dark {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.button--full {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0 0 1rem;
}

.mobile-menu__panel {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1rem;
}

.mobile-menu__panel a {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: hsl(var(--secondary));
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: clip;
  background: hsl(var(--section-dark));
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(
    90deg,
    hsl(210 25% 8% / 0.84),
    hsl(210 25% 8% / 0.52),
    hsl(210 25% 8% / 0.24)
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.hero__content {
  max-width: 44rem;
  color: hsl(var(--section-dark-foreground));
}

.hero__kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__title,
.page-hero__title,
.section-title {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.hero__title .highlight {
  color: hsl(var(--primary));
}

.hero__copy,
.page-hero__copy,
.section-copy,
.rich-text {
  color: hsl(var(--section-dark-foreground) / 0.84);
  font-size: 1.08rem;
  max-width: 42rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: 5.5rem 0;
}

.section--soft {
  background: hsl(var(--surface-soft));
}

.section--dark {
  background: hsl(var(--section-dark));
  color: hsl(var(--section-dark-foreground));
}

.section--dark .section-title,
.section--dark .section-copy,
.section--dark .eyebrow,
.section--dark .card__title,
.section--dark .card__text,
.section--dark .stat__label {
  color: inherit;
}

.section-heading {
  margin: 0 auto 3rem;
  max-width: 46rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: hsl(var(--foreground));
}

.section-copy {
  margin: 1rem auto 0;
  color: hsl(var(--muted-foreground));
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.card {
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  box-shadow: 0 14px 38px hsl(var(--shadow));
}

.card--link {
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card--link:hover,
.card--link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px hsl(var(--shadow));
}

.card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card--link:hover .card__media img,
.card--link:focus-visible .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 1.4rem;
}

.card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.78rem;
  font-weight: 800;
}

.card__title {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

.card__subtitle,
.card__text,
.card__meta,
.product-spec,
.form-note,
.form-status,
.info-copy,
.footer__copy,
.footer__link,
.page-link,
.rich-text p,
.rich-text li {
  color: hsl(var(--muted-foreground));
}

.card__subtitle {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.card__text {
  margin: 0;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  color: hsl(var(--primary));
  font-weight: 800;
}

.split-layout,
.location-layout,
.contact-layout,
.page-hero__layout,
.install-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-layout,
.location-layout,
.contact-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.page-hero {
  padding: 4.2rem 0 2rem;
}

.page-hero__panel {
  max-width: 48rem;
}

.page-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.visual-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  min-height: 100%;
  box-shadow: 0 22px 56px hsl(var(--shadow));
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

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

.stat {
  padding: 1rem;
  border-radius: 16px;
  background: hsl(var(--background) / 0.06);
  text-align: center;
}

.stat__value {
  display: block;
  color: hsl(var(--primary));
  font-size: 1.6rem;
  font-weight: 800;
}

.stat__label {
  font-size: 0.88rem;
  color: hsl(var(--section-dark-foreground) / 0.7);
}

.info-stack,
.contact-panel,
.rich-text section {
  display: grid;
  gap: 1rem;
}

.info-card,
.contact-panel,
.form-card,
.cta-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: 0 14px 38px hsl(var(--shadow));
}

.section--dark .contact-panel,
.section--dark .cta-panel {
  background: hsl(var(--background) / 0.06);
  border-color: hsl(var(--background) / 0.12);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  flex-shrink: 0;
  font-size: 1.05rem;
}

.section--dark .info-icon {
  background: hsl(var(--background) / 0.12);
  color: hsl(var(--primary));
}

.info-title {
  margin: 0 0 0.1rem;
  font-weight: 800;
}

.info-copy {
  margin: 0;
}

.info-copy a {
  color: hsl(var(--primary));
  font-weight: 700;
}

.form-card h2 {
  margin-top: 0;
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.label {
  font-weight: 700;
  color: hsl(var(--foreground));
}

.input,
.textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.12);
}

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

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
  color: hsl(var(--muted-foreground));
}

.checkbox-row input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
}

.checkbox-row a,
.form-note a,
.rich-text a,
.footer__link:hover,
.footer__link:focus-visible {
  color: hsl(var(--primary));
}

.captcha-placeholder {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  border: 1px dashed hsl(var(--border));
  border-radius: 14px;
  background: hsl(var(--secondary));
  color: hsl(var(--muted-foreground));
}

.form-actions {
  display: grid;
  gap: 0.8rem;
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  font-weight: 700;
}

.form-result {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

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

.product-spec {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-weight: 800;
  font-size: 0.82rem;
}

.cta-band {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    hsl(var(--accent)),
    hsl(var(--secondary))
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.install-panel {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    135deg,
    hsl(var(--background) / 0.08),
    hsl(var(--background) / 0.03)
  );
  border: 1px solid hsl(var(--background) / 0.12);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: hsl(var(--background) / 0.06);
}

.footer {
  padding: 3.5rem 0 2rem;
  background: hsl(var(--section-dark));
  color: hsl(var(--section-dark-foreground));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.8rem;
}

.footer__title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.footer__copy {
  margin: 0;
  color: hsl(var(--section-dark-foreground) / 0.68);
}

.footer__links {
  display: grid;
  gap: 0.55rem;
}

.footer__link {
  color: hsl(var(--section-dark-foreground) / 0.72);
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(var(--section-dark-foreground) / 0.1);
  color: hsl(var(--section-dark-foreground) / 0.45);
  font-size: 0.92rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  padding: 1rem;
  border-radius: 18px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: 0 24px 60px hsl(var(--shadow));
}

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

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 6.4rem;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 20px 44px hsl(var(--shadow));
}

/*.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}*/

/*.reveal[data-direction="left"] {
  transform: translateX(-52px);
}*/

/*.reveal[data-direction="right"] {
  transform: translateX(52px);
}*/

/*.reveal[data-direction="up"] {
  transform: translateY(36px);
}*/

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.rich-text {
  color: hsl(var(--foreground));
}

.rich-text h2 {
  margin-bottom: 0.8rem;
  color: hsl(var(--foreground));
}

.rich-text ul {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 980px) {
  .nav__links,
  .site-header .button--primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .grid--3,
  .product-grid,
  .footer__grid,
  .check-list,
  .grid--2,
  .split-layout,
  .location-layout,
  .contact-layout,
  .page-hero__layout {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .floating-call {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .cta-band,
  .cookie-banner__inner {
    align-items: flex-start;
  }

  .hero__actions,
  .cookie-banner__actions {
    width: 100%;
  }

  .hero__actions .button,
  .cta-band .button,
  .cookie-banner__actions .button {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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