:root {
  --bg: #eef4fb;
  --bg-alt: #f7fbff;
  --ink: #0b1f3a;
  --ink-soft: #5c6b82;
  --ink-faint: #7f8fa6;
  --line: rgba(11, 31, 58, 0.12);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --panel-dark: #0b1f3a;
  --panel-dark-soft: #1f2a44;
  --lime: #00c2a8;
  --orange: #00c2a8;
  --sky: #e6eef7;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 22px 60px rgba(11, 31, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(0, 194, 168, 0.2), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(31, 42, 68, 0.16), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 42%, #e6eef7 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(230, 238, 247, 0.76);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.submission-banner {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0.9rem auto 0;
  padding: 0.95rem 1.15rem;
  border-radius: 20px;
  background: rgba(0, 194, 168, 0.12);
  border: 1px solid rgba(0, 194, 168, 0.32);
  color: #0e8a78;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}

.header-inner {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.brand-logo {
  width: clamp(132px, 12vw, 164px);
  height: auto;
}

.footer-brand .brand-logo {
  width: 150px;
}

.primary-nav {
  position: static;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--ink-soft);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
  z-index: auto;
}

.primary-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.primary-nav a {
  position: relative;
  padding: 0;
  border-radius: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.primary-nav a:hover {
  color: var(--ink);
  transform: translateY(-1px);
  background: transparent;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.primary-nav a.is-active {
  color: var(--ink);
}

.nav-cta {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

.hero {
  padding: 4.4rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 18px 44px rgba(11, 31, 58, 0.08);
  overflow: hidden;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-copy::before {
  width: 220px;
  height: 220px;
  top: -130px;
  right: -70px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.18), rgba(0, 194, 168, 0));
}

.hero-copy::after {
  width: 260px;
  height: 260px;
  bottom: -180px;
  left: -80px;
  background: radial-gradient(circle, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0));
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.announcement,
.status-pill,
.hero-points span,
.contact-notes span,
.smart-home-points span,
.proof-strip-inner span,
.integration-row span,
.product-tags span,
.product-meta span {
  border-radius: 999px;
  border: 1px solid rgba(22, 17, 15, 0.1);
}

.announcement {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.eyebrow,
.mini-label {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.8rem;
}

.mini-label {
  color: var(--ink-faint);
  font-size: 0.72rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  max-width: 12ch;
  line-height: 0.94;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 11ch;
}

h3 {
  line-height: 1.15;
}

.subcopy,
.section-head p,
.solution-card p,
.platform-points p,
.step p,
.quote cite,
.faq-item p,
.footer-copy,
.footer-grid a,
.card-caption p,
.panel-copy,
.category-card p,
.contact-grid p,
.product-card p {
  color: var(--ink-soft);
}

.hero .subcopy {
  max-width: 34rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.btn,
.filter-chip,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.filter-chip:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.btn {
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary {
  background: var(--ink);
  color: #e6eef7;
  box-shadow: 0 14px 26px rgba(11, 31, 58, 0.22);
}

.btn-secondary {
  border-color: rgba(11, 31, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.hero-points,
.contact-notes,
.smart-home-points,
.integration-row,
.product-tags,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-points {
  margin-top: 1.1rem;
}

.hero-points span,
.contact-notes span,
.smart-home-points span,
.integration-row span,
.product-tags span,
.product-meta span {
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

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

.hero-stats article,
.board-kpis article,
.analytics-grid article {
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.hero-stats strong,
.board-kpis strong,
.analytics-grid strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.hero-stage {
  position: relative;
  min-height: 590px;
  perspective: 1200px;
}

.hero-stage-card,
.hero-floating,
.platform-board .board-shell,
.category-card,
.solution-card,
.step,
.quote,
.faq-item,
.contact-form,
.smart-home-panel,
.product-card {
  box-shadow: var(--shadow);
}

.gallery-card {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  inset: 0 0 5.25rem 0;
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.35s ease;
  animation: drift-main 8s ease-in-out infinite;
  will-change: transform;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.04);
  animation: image-pan 12s ease-in-out infinite alternate;
}

.card-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(230, 238, 247, 0.9);
  backdrop-filter: blur(14px);
}

.hero-floating {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 31, 58, 0.08);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.deck-card {
  left: -1.2rem;
  bottom: 1rem;
  width: min(240px, 65%);
  animation: drift-card-left 7s ease-in-out infinite;
}

.analytics-card {
  top: 1.2rem;
  right: -0.9rem;
  width: min(250px, 68%);
  animation: drift-card-right 9s ease-in-out infinite;
}

@keyframes drift-main {
  0%,
  100% {
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  }

  50% {
    transform: translate3d(calc(var(--parallax-x) + 8px), calc(var(--parallax-y) - 10px), 0);
  }
}

@keyframes drift-card-left {
  0%,
  100% {
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  }

  50% {
    transform: translate3d(calc(var(--parallax-x) - 10px), calc(var(--parallax-y) - 12px), 0);
  }
}

@keyframes drift-card-right {
  0%,
  100% {
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  }

  50% {
    transform: translate3d(calc(var(--parallax-x) + 10px), calc(var(--parallax-y) + 8px), 0);
  }
}

@keyframes image-pan {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.09) translate3d(-10px, -8px, 0);
  }
}

.signal-list,
.board-list,
.panel-list {
  margin: 0;
  padding-left: 1.1rem;
}

.analytics-grid {
  display: grid;
  gap: 0.75rem;
}

.analytics-grid article {
  background: #f7fbff;
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.proof-strip {
  padding-bottom: 1rem;
}

.proof-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.proof-strip-inner span {
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(0, 194, 168, 0.18), transparent 24%),
    linear-gradient(180deg, #0b1f3a, #1f2a44);
  color: #e6eef7;
}

.section-dark .eyebrow,
.section-dark .mini-label {
  color: var(--lime);
}

.section-dark .section-head p,
.section-dark .subcopy,
.section-dark .solution-card p,
.section-dark .quote cite,
.section-dark #catalog-summary,
.section-dark .smart-home-copy p,
.section-dark .panel-copy,
.section-dark .product-card p,
.section-dark .product-meta span,
.section-dark .product-tags span {
  color: rgba(230, 238, 247, 0.74);
}

.tint {
  background: linear-gradient(180deg, rgba(230, 238, 247, 0.78), rgba(214, 226, 239, 0.44));
}

.section-head {
  margin-bottom: 1.8rem;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 1.5rem;
  align-items: end;
}

.category-grid,
.lead-grid,
.solution-grid,
.testimonials,
.faq-list,
.steps,
.board-panels,
.platform-points,
.product-grid {
  display: grid;
  gap: 1rem;
}

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

.lead-engine {
  padding-top: 2rem;
}

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

.lead-card {
  min-height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.lead-card.is-dark {
  background: linear-gradient(180deg, #0b1f3a, #1f2a44);
  border-color: rgba(230, 238, 247, 0.12);
  color: #e6eef7;
}

.lead-card.is-dark p,
.lead-card.is-dark .mini-label {
  color: rgba(230, 238, 247, 0.74);
}

.category-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.category-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.category-card div {
  padding: 1.2rem;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.filter-chip {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(230, 238, 247, 0.16);
  background: rgba(230, 238, 247, 0.08);
  color: #e6eef7;
}

.filter-chip.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: #111111;
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(230, 238, 247, 0.12);
}

.product-card__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.product-card__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
}

.product-card__body h3 {
  font-size: 1.2rem;
}

.product-card__body p {
  margin-bottom: 0;
}

.product-meta,
.product-tags {
  font-size: 0.84rem;
}

.platform-grid,
.smart-home-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.platform-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.platform-points article,
.step,
.solution-card,
.quote,
.faq-item,
.contact-form,
.smart-home-panel {
  border-radius: 24px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.15rem;
}

.platform-board .board-shell {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 238, 247, 0.96));
  border: 1px solid rgba(11, 31, 58, 0.08);
  padding: 1.2rem;
}

.board-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.status-pill {
  padding: 0.45rem 0.7rem;
  background: rgba(0, 194, 168, 0.18);
  color: var(--ink);
  font-size: 0.84rem;
}

.board-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.board-kpis article {
  background: #f7fbff;
  border: 1px solid rgba(11, 31, 58, 0.08);
}

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

.board-panels article {
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(22, 17, 15, 0.08);
}

.integration-row {
  margin-top: 1rem;
}

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

.step-index {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--orange);
  font-weight: 700;
}

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

.solution-card {
  min-height: 100%;
}

.accent-card {
  background: linear-gradient(180deg, #0b1f3a, #1f2a44);
  color: #e6eef7;
  border-color: rgba(230, 238, 247, 0.12);
}

.accent-card p {
  color: rgba(230, 238, 247, 0.74);
}

.smart-home-panel {
  overflow: hidden;
  padding: 0;
}

.smart-home-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.panel-copy {
  padding: 1.15rem;
}

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

.quote {
  margin: 0;
}

.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.cta-band {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  border-radius: 32px;
  color: #e6eef7;
  background:
    radial-gradient(circle at top left, rgba(0, 194, 168, 0.2), transparent 30%),
    linear-gradient(135deg, #0b1f3a, #173457 58%, #0e8a78);
}

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

.form-status {
  min-height: 1.5rem;
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.form-status.is-success {
  color: #0e8a78;
}

.form-status.is-error {
  color: #b42318;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.82rem 0.9rem;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(0, 194, 168, 0.45);
  border-color: rgba(11, 31, 58, 0.18);
}

.site-footer {
  padding-top: 2.5rem;
  background: #e6eef7;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

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

.footer-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 0.96rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(22, 17, 15, 0.08);
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .btn,
  .filter-chip,
  .text-button,
  .primary-nav a,
  .gallery-card,
  .hero-floating,
  .gallery-card img {
    transition: none;
  }

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

  .gallery-card,
  .hero-floating,
  .gallery-card img {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .platform-grid,
  .smart-home-grid,
  .contact-grid,
  .split-head,
  .lead-grid,
  .solution-grid,
  .platform-points,
  .board-panels,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-copy,
  .hero-stage {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

  .hero-stage {
    min-height: 520px;
  }

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    margin-left: auto;
    gap: 0;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: auto;
    right: 0;
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    min-width: min(320px, calc(100vw - 2rem));
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: 0 24px 50px rgba(11, 31, 58, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .primary-nav a {
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
  }

  .primary-nav a:hover {
    background: rgba(230, 238, 247, 0.82);
  }

  .nav-cta {
    margin-top: 0.25rem;
    justify-content: center;
  }

  .hero,
  .section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .hero-copy {
    padding: 1.3rem;
    border-radius: 28px;
  }

  .hero-grid,
  .platform-grid,
  .smart-home-grid,
  .contact-grid,
  .split-head,
  .platform-points,
  .lead-grid,
  .category-grid,
  .solution-grid,
  .steps,
  .product-grid,
  .testimonials,
  .footer-grid,
  .board-panels,
  .hero-stats,
  .board-kpis {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .gallery-card,
  .hero-floating {
    position: static;
    animation: none;
    transform: none;
  }

  .gallery-card {
    min-height: 420px;
  }

  .gallery-card img {
    animation: none;
    transform: scale(1.02);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
    max-width: 100%;
    line-height: 0.96;
  }

  .hero .subcopy {
    font-size: 1rem;
  }

  h2 {
    max-width: 100%;
  }
}
