:root {
  --sky: #5eb8e8;
  --sky-deep: #1a6fa8;
  --navy: #0c2740;
  --navy-soft: #163a58;
  --ink: #102033;
  --muted: #4a6278;
  --paper: #f4f8fc;
  --white: #ffffff;
  --line: rgba(12, 39, 64, 0.12);
  --glow: rgba(94, 184, 232, 0.35);
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --max: 1120px;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 50% at 10% -10%, rgba(94, 184, 232, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 20%, rgba(26, 111, 168, 0.12), transparent 50%),
    linear-gradient(180deg, #e8f3fb 0%, #f2f7fb 35%, #eef5fa 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-lead {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  color: var(--white);
  overflow: visible;
}

.site-header .brand-name,
.site-header .site-nav a:not(.nav-cta) {
  color: var(--white);
}

.site-header .nav-toggle span {
  background: var(--white);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(12, 39, 64, 0.06);
  color: var(--ink);
}

.site-header.is-scrolled .brand-name,
.site-header.is-scrolled .site-nav a:not(.nav-cta) {
  color: var(--navy-soft);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--navy);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-mark {
  width: auto;
  height: 2.4rem;
  max-width: 3.6rem;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  overflow: visible;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--sky-deep);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--sky-deep);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.65rem;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 55%, var(--navy) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px var(--glow);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(26, 111, 168, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(12, 39, 64, 0.25);
}

.btn-ghost:hover {
  border-color: var(--sky-deep);
  color: var(--sky-deep);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 15%, rgba(94, 184, 232, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(26, 111, 168, 0.45), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(94, 184, 232, 0.25), transparent 45%),
    linear-gradient(165deg, #0a1f33 0%, #134a72 42%, #1a6fa8 78%, #5eb8e8 100%);
  animation: sky-drift 18s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(10, 31, 51, 0.45) 100%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.1), transparent 30%);
  pointer-events: none;
}

@keyframes sky-drift {
  from {
    filter: hue-rotate(0deg) saturate(1);
  }
  to {
    filter: hue-rotate(8deg) saturate(1.08);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  overflow: visible;
}

.hero-logo {
  display: block;
  width: clamp(8rem, 22vw, 12rem);
  height: auto;
  max-width: 100%;
  margin: 0 auto 1.15rem;
  object-fit: contain;
  object-position: center;
  overflow: visible;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  animation: logo-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  animation: fade-up 0.9s 0.15s both;
}

.hero-title {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  animation: fade-up 0.9s 0.28s both;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  animation: fade-up 0.9s 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  animation: fade-up 0.9s 0.52s both;
}

.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: pulse-y 2.2s ease-in-out infinite;
}

@keyframes pulse-y {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.45;
  }
  50% {
    transform: translate(-50%, 6px);
    opacity: 0.9;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections shared */
.products,
.services,
.why-us,
.contact,
.about,
.custom-software {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
}

.products,
.contact,
.about {
  position: relative;
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(94, 184, 232, 0.2), transparent 60%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(26, 111, 168, 0.14), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(232, 243, 251, 0.9) 45%, rgba(214, 232, 245, 0.85) 100%);
}

.products::before,
.about::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(12, 39, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 39, 64, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
}

.products > *,
.about > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.services {
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(94, 184, 232, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 80%, rgba(26, 111, 168, 0.12), transparent 50%),
    linear-gradient(180deg, #dcecf6 0%, #eaf4fa 50%, #e3eef7 100%);
}

/* About */
.about {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: max(1.25rem, calc((100% - var(--max)) / 2));
  padding-right: max(1.25rem, calc((100% - var(--max)) / 2));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-block h3 {
  font-size: 1.25rem;
  color: var(--navy);
}

.about-block p {
  color: var(--muted);
  margin-bottom: 0;
}

.values {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.75rem;
}

.values h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.values ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.values li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--sky-deep);
}

.about-team {
  color: var(--muted);
  max-width: 48rem;
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.about-team strong {
  color: var(--navy);
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 48rem;
}

.team-card {
  padding-top: 1rem;
  border-top: 2px solid var(--navy);
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.team-role {
  font-weight: 700;
  color: var(--sky-deep);
  font-size: 0.9rem;
  margin-bottom: 0.5rem !important;
}

.team-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.supply-row {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.supply-row h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip-list li {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-soft);
  background: rgba(94, 184, 232, 0.12);
  border: 1px solid rgba(26, 111, 168, 0.18);
  border-radius: 0.4rem;
}

.clientele {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  max-width: 42rem;
}

/* Products */
.products {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: max(1.25rem, calc((100% - var(--max)) / 2));
  padding-right: max(1.25rem, calc((100% - var(--max)) / 2));
}

.product-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.5rem;
}

.product-spotlight h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.product-spotlight p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  color: var(--navy-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
}

.product-spotlight-media {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12, 39, 64, 0.22);
}

.product-spotlight-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.product-spotlight:hover .product-spotlight-media img {
  transform: scale(1.06);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.75rem;
}

.product {
  padding: 1rem 0 1.25rem;
  border-top: 2px solid var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.15));
  border-radius: 0 0 0.5rem 0.5rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
}

.product-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--sky-deep);
  margin: 1rem 0 0.65rem;
}

.product h3 {
  font-size: 1.35rem;
}

.product p {
  color: var(--muted);
  font-size: 0.98rem;
}

.product-meta {
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy) !important;
  margin-bottom: 0 !important;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.product-strip figure {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.product-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-strip figure:hover img {
  transform: scale(1.04);
}

/* Custom software */
.custom-software {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: max(1.25rem, calc((100% - var(--max)) / 2));
  padding-right: max(1.25rem, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(26, 111, 168, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(94, 184, 232, 0.2), transparent 50%),
    linear-gradient(180deg, #e3eef7 0%, #f4f8fc 55%, #eaf4fa 100%);
}

.custom-software > * {
  position: relative;
  z-index: 1;
}

.custom-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.custom-steps li {
  counter-increment: step;
  padding-top: 0.35rem;
  border-top: 2px solid var(--navy);
}

.custom-steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--sky-deep);
  margin-bottom: 0.65rem;
}

.custom-steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.custom-steps span {
  color: var(--muted);
  font-size: 0.98rem;
}

.custom-examples {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.custom-examples h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.custom-cta {
  justify-content: flex-start;
}

.custom-software .btn-ghost {
  color: var(--navy);
  border-color: rgba(12, 39, 64, 0.25);
}

.custom-software .btn-ghost:hover {
  border-color: var(--sky-deep);
  color: var(--sky-deep);
  background: transparent;
}

/* Services */
.services {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: max(1.25rem, calc((100% - var(--max)) / 2));
  padding-right: max(1.25rem, calc((100% - var(--max)) / 2));
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.service-list li {
  display: grid;
  grid-template-columns: minmax(10rem, 14rem) 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.service-list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}

.service-list span {
  color: var(--muted);
}

/* Why us */
.why-us {
  max-width: calc(var(--max) + 5rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  background:
    linear-gradient(120deg, rgba(12, 39, 64, 0.94), rgba(26, 111, 168, 0.88)),
    url("../assets/swp-job-cards.png") center / cover;
  color: var(--white);
  border-radius: 0;
  width: 100%;
  max-width: none;
  padding-left: max(1.25rem, calc((100% - var(--max)) / 2));
  padding-right: max(1.25rem, calc((100% - var(--max)) / 2));
}

.why-us .eyebrow {
  color: var(--sky);
}

.why-us p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 28rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.benefit-list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

/* Contact */
.contact {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: max(1.25rem, calc((100% - var(--max)) / 2));
  padding-right: max(1.25rem, calc((100% - var(--max)) / 2));
}

.contact-panel {
  max-width: 40rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 2.5rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
}

.contact-details dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.4rem;
}

.contact-details dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}

.contact-details a:hover {
  color: var(--sky-deep);
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
}

.footer-brand p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .product-spotlight,
  .why-us,
  .product-grid,
  .about-grid,
  .team-cards,
  .custom-steps {
    grid-template-columns: 1fr;
  }

  .custom-steps {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }

  .product-strip img {
    aspect-ratio: 16 / 9;
  }

  .service-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-nav a:not(.nav-cta) {
    color: var(--navy-soft) !important;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .brand-name {
    font-size: 0.85rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .custom-steps {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-logo,
  .hero-brand,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .hero-atmosphere,
  .hero-scroll,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
