:root {
  --paper: #fbfaf7;
  --paper-2: #f4f0e8;
  --white: #fff;
  --navy: #0a1d30;
  --navy-2: #102d46;
  --navy-3: #183f5d;
  --ink: #122536;
  --muted: #65727d;
  --gold: #ba8a47;
  --gold-light: #e9c98f;
  --line: rgba(10, 29, 48, 0.12);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 80px rgba(20, 39, 55, 0.13);
  --shadow-soft: 0 14px 42px rgba(20, 39, 55, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1240px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.soft-section,
.sectors-section,
.calc-section,
.faq-section {
  background: var(--paper-2);
}

.section-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head .eyebrow,
.editorial-split .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 5px 13px;
  color: #805a26;
  background: rgba(186, 138, 71, 0.1);
  border: 1px solid rgba(186, 138, 71, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section-head h2,
.editorial-split__copy h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: -0.045em;
}

.section-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.95;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Preview label */
.preview-note {
  position: fixed;
  z-index: 1300;
  inset-block-end: 18px;
  inset-inline-start: 18px;
  padding: 7px 12px;
  color: var(--navy);
  background: rgba(245, 222, 180, 0.93);
  border: 1px solid rgba(128, 90, 38, 0.22);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(10, 29, 48, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(20, 39, 55, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
}

.wordmark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 176px;
  height: 62px;
}

.wordmark::after {
  display: none;
}

.wordmark img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 31px);
}

.desktop-nav a {
  position: relative;
  padding: 29px 0 25px;
  color: #4b5964;
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--navy);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-link {
  min-width: 38px;
  padding: 6px 8px;
  color: var(--navy);
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease;
}

.nav-cta:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: var(--header-height) 0 auto;
  display: grid;
  gap: 0;
  padding: 14px 20px 24px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu a {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-menu a:last-child {
  margin-block-start: 10px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn span {
  font-family: Arial, sans-serif;
  font-size: 0.96rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(10, 29, 48, 0.2);
}

.btn--primary:hover {
  background: var(--navy-2);
}

.btn--glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(10, 29, 48, 0.3);
}

.btn--outline:hover {
  background: rgba(10, 29, 48, 0.05);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 60px) 0 42px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.home-hero__media,
.home-hero__slide,
.home-hero__slide img,
.home-hero__veil {
  position: absolute;
  inset: 0;
}

.home-hero__media {
  z-index: -2;
}

.home-hero__slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
}

.home-hero__slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 7s linear;
}

.home-hero__slide.is-active img {
  transform: scale(1);
}

.home-hero__slide figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.home-hero__veil {
  background:
    radial-gradient(circle at 50% 48%, rgba(10, 29, 48, 0.22), rgba(10, 29, 48, 0.68) 72%),
    linear-gradient(180deg, rgba(10, 29, 48, 0.18), rgba(10, 29, 48, 0.5));
}

.home-hero__content {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100svh - 230px);
  padding-block: 30px;
  text-align: center;
}

.hero-mark,
.service-hero__content > span,
.faq-hero span {
  display: inline-flex;
  padding: 7px 13px;
  margin-block-end: 18px;
  color: #f4d59e;
  background: rgba(10, 29, 48, 0.26);
  border: 1px solid rgba(244, 213, 158, 0.32);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  backdrop-filter: blur(12px);
}

.home-hero h1 {
  max-width: 920px;
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.home-hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.home-hero__content > p {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.45vw, 1.15rem);
  line-height: 1.95;
}

.home-hero .hero-actions {
  margin-block-end: 42px;
}

.hero-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-tabs button {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 18px 20px 8px;
  color: rgba(255, 255, 255, 0.67);
  background: transparent;
  border: 0;
  text-align: start;
  font-size: 0.76rem;
}

.hero-tabs button::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

[dir="rtl"] .hero-tabs button::before {
  transform-origin: right;
}

.hero-tabs button.is-active {
  color: var(--white);
}

.hero-tabs button.is-active::before {
  transform: scaleX(1);
}

.hero-tabs button span {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
}

/* Intro and home divisions */
.intro-section {
  background: var(--white);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-block-start: 44px;
}

.principles article {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.principles span,
.sector-card > span,
.feature-card > span {
  display: block;
  margin-block-end: 17px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principles h3,
.sector-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.principles p,
.sector-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.85;
}

.expertise-section {
  background: var(--paper);
}

.division-stack {
  display: grid;
  gap: 28px;
}

.division-panel {
  position: relative;
  min-height: clamp(480px, 67svh, 720px);
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.division-panel > img,
.division-panel__shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.division-panel > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.division-panel__shade {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(10, 29, 48, 0.18), rgba(10, 29, 48, 0.72) 82%),
    linear-gradient(180deg, rgba(10, 29, 48, 0.1), rgba(10, 29, 48, 0.6));
}

.division-panel:hover > img {
  transform: scale(1.035);
}

.division-panel__content {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  max-width: 760px;
  padding: 70px 34px;
  margin-inline: auto;
  text-align: center;
}

.division-panel__content > span {
  margin-block-end: 18px;
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.division-panel h3 {
  margin: 0 0 17px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.division-panel p {
  max-width: 660px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.division-panel__content > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 800;
}

.division-panel__content > a b {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sector-card {
  min-height: 235px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

/* Service heroes */
.service-hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  padding: calc(var(--header-height) + 50px) 0 55px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.service-hero__media,
.service-hero__media img,
.service-hero__media > div {
  position: absolute;
  inset: 0;
}

.service-hero__media {
  z-index: -1;
}

.service-hero__media img {
  height: 100%;
  object-fit: cover;
}

.service-hero__media > div {
  background:
    radial-gradient(circle at 50% 48%, rgba(10, 29, 48, 0.18), rgba(10, 29, 48, 0.74) 82%),
    linear-gradient(180deg, rgba(10, 29, 48, 0.14), rgba(10, 29, 48, 0.48));
}

.service-hero__content {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(88svh - var(--header-height) - 105px);
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.service-hero h1 {
  max-width: 950px;
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.service-hero__content > p {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.4vw, 1.13rem);
  line-height: 1.95;
}

/* Image and feature cards */
.image-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.image-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 11px);
  margin-inline: auto;
}

.image-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.image-card:hover .image-card__media img {
  transform: scale(1.035);
}

.image-card__body {
  padding: 26px 27px 29px;
  text-align: center;
}

.media-icon {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  inset-inline-start: 22px;
  inset-block-end: 18px;
  place-items: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 17px;
  box-shadow: 0 14px 32px rgba(6, 20, 32, 0.18);
  backdrop-filter: blur(10px);
}

.media-icon svg {
  width: 25px;
  height: 25px;
}

.card-index {
  display: block;
  margin-block-end: 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.image-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.image-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.visual-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.visual-service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.visual-service-card__media {
  position: relative;
  aspect-ratio: 3 / 1.82;
  overflow: hidden;
  background: #0d1720;
}

.visual-service-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(6, 19, 30, 0.36));
  pointer-events: none;
}

.visual-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-service-card__media.is-contain img {
  object-fit: contain;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 35%, rgba(51, 79, 99, 0.42), transparent 52%),
    #0d1720;
}

.visual-service-card:hover .visual-service-card__media img {
  transform: scale(1.025);
}

.visual-service-card__body {
  padding: 28px 30px 31px;
}

.visual-service-card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 1.18rem;
}

.visual-service-card p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.85;
}

.visual-service-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.visual-service-card li {
  position: relative;
  padding: 11px 12px;
  color: #485966;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.68rem;
  line-height: 1.55;
}

.visual-service-card li::before {
  content: "•";
  margin-inline-end: 6px;
  color: var(--gold);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

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

.feature-card {
  min-height: 230px;
  padding: 32px 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(186, 138, 71, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.feature-card-grid--two .feature-card {
  min-height: 205px;
  padding-inline: clamp(26px, 4vw, 48px);
}

.feature-card h3 {
  font-size: 1.08rem;
}

.feature-card p {
  max-width: 460px;
  margin-inline: auto;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
}

.editorial-split--reverse .editorial-split__image {
  order: 2;
}

.editorial-split__image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.editorial-split__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-split__copy {
  text-align: center;
}

.editorial-split__copy .eyebrow {
  margin: 0 auto 17px;
}

.editorial-split__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.5vw, 3.05rem);
}

.editorial-split__copy > p {
  margin: 0;
  color: var(--muted);
}

.about-statement {
  text-align: center;
}

.about-statement .eyebrow {
  margin-inline: auto;
}

.about-statement h2 {
  margin: 18px 0 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-statement p {
  margin: 0 auto 13px;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.25vw, 1.04rem);
  line-height: 2;
}

.about-division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-division-card {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.about-division-card > img,
.about-division-card__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-division-card > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-division-card__veil {
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 16, 25, 0.08) 20%, rgba(5, 16, 25, 0.9) 100%);
}

.about-division-card > div {
  align-self: end;
  padding: clamp(26px, 4vw, 42px);
}

.about-division-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.about-division-card p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.about-division-card b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
}

.about-division-card b i {
  font-family: Arial, sans-serif;
  font-style: normal;
}

.about-division-card:hover > img {
  transform: scale(1.035);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 38px 13px 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 650;
  text-align: start;
}

[dir="ltr"] .check-list li {
  padding: 13px 16px 13px 38px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 14px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

/* Screen build */
.screen-build {
  position: relative;
  height: 430vh;
  color: var(--white);
  background: var(--navy);
}

.screen-build__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: calc(var(--header-height) + 24px) 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 84, 120, 0.55), transparent 58%),
    var(--navy);
}

.screen-build__heading {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  max-width: 840px;
  text-align: center;
}

.screen-build__cable-anchor,
.screen-build__final-anchor {
  position: absolute;
  inset-inline-start: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.screen-build__cable-anchor {
  inset-block-start: 33%;
}

.screen-build__final-anchor {
  inset-block-end: 100svh;
}

.screen-build__heading > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
}

.screen-build__heading h2 {
  margin: 5px 0 7px;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
}

.screen-build__heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.screen-stage {
  position: relative;
  width: min(76vw, 940px);
  aspect-ratio: 16 / 8.7;
  align-self: center;
  justify-self: center;
  margin: 18px auto;
  perspective: 1200px;
}

.screen-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% -4% -6%;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 28px;
  filter: blur(30px);
}

.screen-frame,
.screen-cables,
.cabinet-grid,
.finished-screen {
  position: absolute;
  inset: 0;
}

.screen-frame {
  opacity: 0;
  transform: scale(0.88);
}

.screen-frame i {
  position: absolute;
  background: linear-gradient(90deg, #75828c, #d8dfe2, #6e7a84);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.screen-frame i:nth-child(1),
.screen-frame i:nth-child(2) {
  inset-block: 0;
  width: 1.8%;
}

.screen-frame i:nth-child(1) {
  inset-inline-start: 0;
}

.screen-frame i:nth-child(2) {
  inset-inline-end: 0;
}

.screen-frame i:nth-child(3),
.screen-frame i:nth-child(4) {
  inset-inline: 0;
  height: 3.1%;
}

.screen-frame i:nth-child(3) {
  inset-block-start: 0;
}

.screen-frame i:nth-child(4) {
  inset-block-end: 0;
}

.screen-cables {
  opacity: 0;
}

.screen-cables i {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #eac777, #d66852 46%, #65a7cf);
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(234, 199, 119, 0.5);
}

.screen-cables .cable-v {
  width: 2px;
  height: 84%;
  inset-block-start: 8%;
  inset-inline-start: calc(8.5% + var(--c) * 16.6%);
  background: linear-gradient(#eac777, #d66852 46%, #65a7cf);
}

.screen-cables .cable-h {
  width: 89%;
  height: 2px;
  inset-inline-start: 5.5%;
  inset-block-start: calc(13% + var(--r) * 24.5%);
}

.screen-cables b {
  position: absolute;
  width: 8px;
  height: 8px;
  inset-inline-start: calc(8% + (var(--n) % 4) * 27.8%);
  inset-block-start: calc(12% + (var(--n) / 4) * 73%);
  background: #eac777;
  border: 2px solid #202b32;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(234, 199, 119, 0.55);
}

.cabinet-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
  padding: 2.4%;
}

.cabinet-grid span {
  position: relative;
  opacity: 0;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    #151d22;
  background-size: 18% 18%;
  border: 1px solid #48525a;
  border-radius: 3px;
  box-shadow: inset 0 0 0 2px #11171b, 0 4px 10px rgba(0, 0, 0, 0.35);
  transform: translate3d(calc((var(--i) % 2 ? 1 : -1) * 180px), calc((var(--i) % 3 - 1) * 120px), 140px) rotateY(calc((var(--i) % 2 ? 1 : -1) * 18deg));
}

.cabinet-grid span::after {
  content: "";
  position: absolute;
  width: 22%;
  aspect-ratio: 1;
  inset: 39%;
  background: #d49d48;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(212, 157, 72, 0.38);
}

.finished-screen {
  overflow: hidden;
  opacity: 0;
  background: #050b11;
  border: 3px solid #17222a;
  border-radius: 4px;
  transform: scale(0.985);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.finished-screen__content {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 134, 174, 0.72), transparent 42%),
    radial-gradient(circle at 82% 100%, rgba(194, 139, 63, 0.46), transparent 44%),
    linear-gradient(135deg, #081520, #0b2940 58%, #09131d);
}

.finished-screen__content::before,
.config-screen__content::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 30%;
  background: linear-gradient(90deg, transparent, rgba(236, 192, 112, 0.72), rgba(67, 140, 183, 0.8), transparent);
  filter: blur(22px);
  transform: rotate(-9deg);
}

.finished-screen__content img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 38%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.config-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 68%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.finished-screen__content span,
.config-screen__content span {
  position: absolute;
  z-index: 3;
  inset-block-end: 10%;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: clamp(0.42rem, 1vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.build-meter {
  position: relative;
  width: min(calc(100% - 40px), 820px);
  height: 3px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
}

.build-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-light);
}

.build-meter b {
  position: absolute;
  inset-block-start: -27px;
  inset-inline-end: 0;
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
}

/* Calculators */
.screen-configurator {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 20px;
  max-width: 1120px;
  margin-inline: auto;
}

.screen-configurator__stage {
  grid-column: 1 / -1;
  padding: clamp(18px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.screen-configurator__wall {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 7.1;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(21, 40, 55, 0.05) 50%, transparent 50.2%),
    linear-gradient(rgba(21, 40, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 40, 55, 0.03) 1px, transparent 1px),
    #e9e4da;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-radius: 21px;
  perspective: 1000px;
}

.wall-label {
  position: absolute;
  z-index: 5;
  inset-block-start: 17px;
  inset-inline-start: 19px;
  color: rgba(10, 29, 48, 0.45);
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.scale-floor {
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 8%;
  left: 3%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 29, 48, 0.18) 8%, rgba(10, 29, 48, 0.18) 92%, transparent);
}

.scale-person {
  position: absolute;
  z-index: 4;
  bottom: 8%;
  left: 2.6%;
  display: block;
  height: 35.7%;
  aspect-ratio: 48 / 128;
  color: #0a1d30;
  filter: drop-shadow(0 6px 7px rgba(10, 29, 48, 0.18));
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-person svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.scale-person b {
  position: absolute;
  bottom: 3px;
  left: calc(100% + 5px);
  padding: 3px 6px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 29, 48, 0.1);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: clamp(0.46rem, 0.9vw, 0.62rem);
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 5px 12px rgba(10, 29, 48, 0.1);
}

.screen-configurator__screen {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 53%;
  height: 47%;
  place-items: center;
  background: #07111b;
  border: 6px solid #101c26;
  box-shadow:
    0 24px 65px rgba(4, 15, 24, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.config-screen__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 134, 174, 0.72), transparent 42%),
    radial-gradient(circle at 82% 100%, rgba(194, 139, 63, 0.46), transparent 44%),
    linear-gradient(135deg, #081520, #0b2940 58%, #09131d);
}

[data-environment="outdoor"] .screen-configurator__wall {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(21, 40, 55, 0.05) 50%, transparent 50.2%),
    linear-gradient(rgba(21, 40, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 40, 55, 0.03) 1px, transparent 1px),
    #e4e8e9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

[data-environment="outdoor"] .screen-configurator__screen {
  box-shadow:
    0 22px 70px rgba(1, 10, 16, 0.46),
    0 0 0 2px rgba(238, 187, 102, 0.2);
}

.screen-pitch {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  padding: 6px 9px;
  color: var(--navy);
  background: rgba(248, 219, 166, 0.94);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: clamp(0.56rem, 1.3vw, 0.76rem);
  font-weight: 850;
}

.screen-dimension {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: clamp(0.56rem, 1.2vw, 0.7rem);
  font-weight: 800;
  pointer-events: none;
}

.screen-dimension b {
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 29, 48, 0.1);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(8, 23, 36, 0.12);
  white-space: nowrap;
}

.screen-dimension i {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.screen-dimension i:first-child::before,
.screen-dimension i:last-child::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-block-start: -2px;
  border-block-start: 1px solid var(--gold);
  border-inline-start: 1px solid var(--gold);
  transform: rotate(-45deg);
}

.screen-dimension i:last-child::after {
  margin-inline-start: auto;
  transform: rotate(135deg);
}

.screen-dimension--width {
  width: calc(100% + 28px);
  inset-block-end: -24px;
  inset-inline-start: -14px;
}

.screen-dimension--height {
  width: calc(100% + 28px);
  inset-block-start: 50%;
  inset-inline-end: calc(-50% - 32px);
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: center;
}

.viewing-distance {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 62px;
  padding: 10px 12px 0;
  color: var(--navy);
}

.viewing-distance__screen {
  display: block;
  width: 8px;
  height: 34px;
  background: var(--navy);
  border-radius: 2px;
  box-shadow: 0 0 0 3px rgba(186, 138, 71, 0.14);
}

.viewing-distance > i {
  position: relative;
  display: block;
  width: 35%;
  height: 1px;
  margin-inline: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 9px);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.viewing-distance__viewer {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.viewing-distance__viewer svg {
  width: 18px;
  height: 18px;
}

.viewing-distance > b {
  margin-inline-start: 12px;
  color: #53616c;
  font-size: 0.72rem;
}

.calculator-shell,
.planner-shell {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 20px;
  max-width: 1040px;
  margin-inline: auto;
}

.calculator-form,
.calculator-result,
.planner-shell > form,
.planner-result {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.screen-configurator .calculator-form,
.screen-configurator .calculator-result {
  min-height: 330px;
}

.measure-control {
  align-content: start;
}

.calculator-form .measure-control:last-child {
  grid-column: 1 / -1;
}

.measure-control > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.measure-control > div:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(186, 138, 71, 0.12);
}

.measure-control > div b {
  padding-inline: 13px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
}

.calculator-form > label,
.planner-shell form > label {
  display: grid;
  gap: 8px;
}

.calculator-form label > span,
.planner-shell label > span {
  color: #51606b;
  font-size: 0.78rem;
  font-weight: 700;
}

.calculator-form input[type="number"],
.planner-shell input {
  width: 100%;
  height: 50px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.measure-control input[type="number"] {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.measure-control input[type="range"] {
  width: 100%;
  height: 22px;
  accent-color: var(--gold);
  cursor: ew-resize;
}

.calculator-form input:focus,
.planner-shell input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(186, 138, 71, 0.12);
}

.calculator-form fieldset {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.calculator-form legend {
  width: 100%;
  margin-block-end: 8px;
  color: #51606b;
  font-size: 0.78rem;
  font-weight: 700;
}

.calculator-form fieldset label {
  flex: 1;
}

.calculator-form fieldset input {
  position: absolute;
  opacity: 0;
}

.calculator-form fieldset span {
  display: block;
  padding: 11px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
}

.calculator-form fieldset input:checked + span {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.calculator-result {
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(45, 103, 145, 0.58), transparent 62%),
    var(--navy);
  text-align: center;
}

.calculator-result > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.calculator-result > strong {
  margin: 10px 0;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: clamp(3.6rem, 9vw, 6.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.calculator-result > p {
  max-width: 460px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.calculator-result > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.calculator-result small {
  display: grid;
  gap: 3px;
  padding: 16px 8px 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
}

.calculator-result small b {
  color: var(--white);
  font-size: 0.79rem;
}

/* Smart room */
.smart-lab-section {
  background: var(--paper-2);
}

.smart-lab {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.smart-room-visual {
  position: relative;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  background: #ddd;
}

.smart-room-visual > img {
  height: 100%;
  object-fit: cover;
  transition: filter 0.7s ease;
}

.smart-room-dim,
.smart-curtain,
.smart-tv,
.smart-glow {
  position: absolute;
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.smart-room-dim {
  inset: 0;
  opacity: 0.08;
  background: rgba(3, 11, 20, 0.75);
}

.smart-curtain {
  inset-block: 0;
  inset-inline-start: 0;
  width: 35%;
  opacity: 0;
  background:
    repeating-linear-gradient(90deg, rgba(69, 65, 61, 0.86) 0 8%, rgba(24, 27, 30, 0.91) 8% 14%);
  transform: translateX(-102%);
}

[dir="rtl"] .smart-curtain {
  transform: translateX(102%);
}

.smart-tv {
  width: 23%;
  height: 23.5%;
  inset-block-start: 35.5%;
  inset-inline-start: 44.8%;
  opacity: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(237, 196, 111, 0.9), transparent 22%),
    linear-gradient(135deg, #133451, #070e18 55%, #b88947);
  border-radius: 2px;
  box-shadow: 0 0 38px rgba(60, 142, 207, 0.48);
}

.smart-glow {
  inset: 0;
  opacity: 0.38;
  background: radial-gradient(circle at 58% 17%, rgba(255, 217, 154, 0.72), transparent 42%);
  mix-blend-mode: screen;
}

.smart-lab[data-scene="relax"] .smart-room-dim { opacity: 0.32; }
.smart-lab[data-scene="relax"] .smart-glow { opacity: 0.22; }
.smart-lab[data-scene="relax"] .smart-room-visual > img { filter: saturate(0.95) sepia(0.05); }
.smart-lab[data-scene="movie"] .smart-room-dim { opacity: 0.68; }
.smart-lab[data-scene="movie"] .smart-curtain { opacity: 0.94; transform: translateX(0); }
.smart-lab[data-scene="movie"] .smart-tv { opacity: 1; }
.smart-lab[data-scene="movie"] .smart-glow { opacity: 0.08; }
.smart-lab[data-scene="away"] .smart-room-dim { opacity: 0.84; }
.smart-lab[data-scene="away"] .smart-curtain { opacity: 0.94; transform: translateX(0); }
.smart-lab[data-scene="away"] .smart-glow,
.smart-lab[data-scene="away"] .smart-tv { opacity: 0; }

.scene-console {
  padding: 24px 26px 28px;
}

.scene-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.scene-tabs button {
  min-width: 92px;
  min-height: 42px;
  padding: 8px 17px;
  color: #5c6872;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
}

.scene-tabs button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.scene-status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-block-start: 22px;
}

.scene-status article {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 14px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-align: center;
}

.scene-status span {
  color: var(--muted);
  font-size: 0.68rem;
}

.scene-status strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.range-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.range-control input {
  accent-color: var(--gold);
}

/* Smart systems story */
.smart-story-section {
  background: var(--paper-2);
}

.smart-story {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.smart-story__visual {
  position: relative;
  aspect-ratio: 16 / 7.7;
  overflow: hidden;
  background: #ddd;
}

.smart-story__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-story__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 16, 29, 0.74));
}

.smart-story__caption {
  position: absolute;
  z-index: 2;
  inset-inline: 30px;
  inset-block-end: 26px;
  display: grid;
  gap: 7px;
  color: var(--white);
}

.smart-story__caption span {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.smart-story__caption strong {
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.55rem);
  line-height: 1.2;
}

.smart-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.smart-scenario-grid article {
  min-height: 210px;
  padding: 27px 24px 25px;
  border-inline-end: 1px solid var(--line);
}

.smart-scenario-grid article:last-child {
  border-inline-end: 0;
}

[dir="rtl"] .smart-scenario-grid article {
  border-inline-end: 0;
  border-inline-start: 1px solid var(--line);
}

[dir="rtl"] .smart-scenario-grid article:last-child {
  border-inline-start: 0;
}

.smart-scenario-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.smart-scenario-grid h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1rem;
}

.smart-scenario-grid p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

/* Home cinema interaction */
.cinema-experience {
  position: relative;
  min-height: 100svh;
  padding: 105px 0 46px;
  overflow: hidden;
  color: var(--white);
  background: #05080c;
  isolation: isolate;
}

.cinema-experience__media,
.cinema-experience__media > img,
.cinema-light,
.cinema-screen-content {
  position: absolute;
  inset: 0;
}

.cinema-experience__media {
  z-index: -1;
}

.cinema-experience__media > img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: filter 0.7s ease;
}

.cinema-light {
  opacity: 0.18;
  background:
    radial-gradient(circle at 50% 8%, rgba(237, 188, 105, 0.65), transparent 35%),
    linear-gradient(180deg, transparent 52%, rgba(2, 5, 8, 0.78));
  transition: opacity 0.6s ease;
}

.cinema-screen-content {
  width: 30.7%;
  height: 29.5%;
  inset-block-start: 23.4%;
  inset-inline-start: 34.8%;
  opacity: 1;
  background:
    radial-gradient(circle at 67% 32%, #ebc06d, transparent 17%),
    linear-gradient(135deg, #0d3554, #08111f 58%, #ad7d3d);
  box-shadow: 0 0 60px rgba(58, 133, 191, 0.3);
  transition: opacity 0.6s ease, filter 0.6s ease;
}

.cinema-experience[data-scene="sports"] .cinema-experience__media > img { filter: brightness(0.77) saturate(1.08); }
.cinema-experience[data-scene="sports"] .cinema-light { opacity: 0.42; }
.cinema-experience[data-scene="sports"] .cinema-screen-content { background: linear-gradient(145deg, #197245, #133a27 62%, #e4d9b3); }
.cinema-experience[data-scene="music"] .cinema-experience__media > img { filter: brightness(0.48) saturate(1.15); }
.cinema-experience[data-scene="music"] .cinema-light { opacity: 0.1; }
.cinema-experience[data-scene="music"] .cinema-screen-content { background: radial-gradient(circle at 50% 50%, #b77a42, #39224e 45%, #070d16); }
.cinema-experience[data-scene="interval"] .cinema-experience__media > img { filter: brightness(0.94); }
.cinema-experience[data-scene="interval"] .cinema-light { opacity: 0.66; }
.cinema-experience[data-scene="interval"] .cinema-screen-content { opacity: 0.08; }

.cinema-experience .section-head h2 {
  color: var(--white);
}

.cinema-experience .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.cinema-experience .section-head .eyebrow {
  color: var(--gold-light);
  background: rgba(10, 29, 48, 0.38);
  border-color: rgba(233, 201, 143, 0.28);
}

.cinema-experience__content {
  display: grid;
  align-content: space-between;
  min-height: calc(100svh - 150px);
}

.cinema-console {
  max-width: 950px;
  padding: 20px;
  margin: auto auto 0;
  background: rgba(8, 16, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.cinema-console .scene-tabs button {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.cinema-console .scene-tabs button.is-active {
  color: var(--navy);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cinema-console .scene-status article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.cinema-console .scene-status span {
  color: rgba(255, 255, 255, 0.5);
}

.cinema-console .scene-status strong {
  color: var(--white);
}

.planner-shell > form {
  display: grid;
  gap: 17px;
}

.planner-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(45, 103, 145, 0.55), transparent 60%),
    var(--navy);
}

.planner-result article {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 128px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  text-align: center;
}

.planner-result span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
}

.planner-result strong {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
}

.planner-result > p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  text-align: center;
}

/* FAQ */
.faq-hero {
  position: relative;
  display: grid;
  min-height: 62svh;
  padding: calc(var(--header-height) + 70px) 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 36%, rgba(63, 123, 165, 0.58), transparent 45%),
    linear-gradient(145deg, var(--navy), #07131e);
}

.faq-hero .container {
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 900px;
  text-align: center;
}

.faq-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.45rem, 4.8vw, 4.2rem);
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

[dir="rtl"] .home-hero h1,
[dir="rtl"] .division-panel h3,
[dir="rtl"] .service-hero h1,
[dir="rtl"] .faq-hero h1 {
  letter-spacing: 0;
}

.faq-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.faq-group + .faq-group {
  margin-block-start: 65px;
}

.faq-group > header {
  display: grid;
  justify-items: center;
  margin-block-end: 22px;
  text-align: center;
}

.faq-group > header span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.faq-group > header h2 {
  margin: 3px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  transition: transform 0.22s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 22px 20px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Closing CTA */
.closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(55px, 8vw, 95px) clamp(28px, 7vw, 90px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(75, 145, 191, 0.5), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(186, 138, 71, 0.33), transparent 32%),
    var(--navy);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow);
}

.closing-card > span {
  display: block;
  margin-block-end: 15px;
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.closing-card h2 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.closing-card p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.7);
}

.closing-card > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

.closing-card .btn--primary {
  color: var(--navy);
  background: var(--gold-light);
}

.closing-card .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.closing-card--compact {
  padding-block: clamp(48px, 6vw, 72px);
}

.closing-card--compact h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(186, 138, 71, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(186, 138, 71, 0.035) 1px, transparent 1px),
    var(--paper-2);
  background-size: 34px 34px;
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(28px, 5vw, 76px);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-copy > .eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  color: #805a26;
  background: rgba(186, 138, 71, 0.1);
  border: 1px solid rgba(186, 138, 71, 0.28);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.contact-copy h2 {
  margin: 18px 0 15px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.22;
}

.contact-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.contact-trust span {
  padding: 8px 11px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
}

.contact-trust span::before {
  content: "✓";
  margin-inline-end: 6px;
  color: var(--gold);
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details > a,
.contact-details > span {
  display: grid;
  align-items: start;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: start;
}

.contact-details b {
  color: var(--navy);
  font-size: 0.86rem;
}

.contact-details span span,
.contact-details a span {
  display: block;
  width: 100%;
  color: #52616c;
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.5;
}

html[dir="rtl"] .contact-details a span[dir="ltr"] {
  text-align: right;
}

html[dir="ltr"] .contact-details a span[dir="ltr"] {
  text-align: left;
}

.contact-form {
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-form label > span b {
  color: var(--gold);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #cfd5d9;
  border-radius: 12px;
  outline: none;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(186, 138, 71, 0.12);
}

.contact-form :is(input, select, textarea).is-invalid {
  border-color: #a74141;
  box-shadow: 0 0 0 3px rgba(167, 65, 65, 0.1);
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form__honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-submit {
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: #64727c;
  font-size: 0.66rem;
}

.form-status {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 2em;
  color: var(--navy);
  font-weight: 700;
}

.form-status.is-success {
  color: #176b43;
}

.form-status.is-success::before {
  content: "✓";
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  color: var(--white);
  background: #1b9b60;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  box-shadow: 0 7px 16px rgba(27, 155, 96, 0.22);
}

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

.whatsapp-float {
  position: fixed;
  z-index: 960;
  left: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #20c969;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(10, 29, 48, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #17b95d;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.whatsapp-float svg path:last-child {
  fill: currentColor;
  stroke: none;
}

/* Footer */
.site-footer {
  padding: 72px 0 22px;
  color: rgba(255, 255, 255, 0.7);
  background: #07131e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.76fr 0.82fr;
  gap: 64px;
  padding-block-end: 52px;
}

.wordmark--footer {
  width: 230px;
  height: 104px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.wordmark--footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-intro p {
  max-width: 380px;
  margin: 22px 0 0;
  font-size: 0.82rem;
}

.footer-grid > div:not(.footer-intro) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid h2 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 0.83rem;
}

.footer-grid a {
  font-size: 0.77rem;
}

.footer-grid span {
  font-size: 0.77rem;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-contact__item {
  display: grid;
  justify-items: start;
  gap: 3px;
  padding-block: 5px;
  text-align: start;
}

.footer-contact__item b {
  color: var(--white);
  font-size: 0.82rem;
}

.footer-contact__item a,
.footer-contact__item span {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
}

html[dir="rtl"] .footer-contact__item :is(a, span)[dir="ltr"] {
  text-align: right;
}

html[dir="ltr"] .footer-contact__item :is(a, span)[dir="ltr"] {
  text-align: left;
}

.footer-whatsapp {
  width: fit-content;
  margin-block-start: 4px;
  color: #79e9a6;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block-start: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
}

.made-in-saudi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.made-in-saudi i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.71rem;
  }

  .nav-cta {
    display: none;
  }

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 78px 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero {
    padding-block-start: calc(var(--header-height) + 42px);
  }

  .home-hero__content {
    min-height: calc(100svh - 210px);
  }

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

  .about-division-grid {
    grid-template-columns: 1fr;
  }

  .about-division-card {
    min-height: 340px;
  }

  .hero-tabs button {
    padding-block: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .principles,
  .calculator-shell,
  .screen-configurator,
  .planner-shell,
  .editorial-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .screen-configurator__stage {
    grid-column: auto;
  }

  .visual-service-card ul {
    grid-template-columns: 1fr;
  }

  .editorial-split--reverse .editorial-split__image {
    order: 0;
  }

  .image-card-grid {
    grid-template-columns: 1fr;
  }

  .image-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }

  .screen-build {
    height: 360vh;
  }

  .screen-stage {
    width: min(92vw, 760px);
  }

  .screen-build__sticky {
    padding-block-start: calc(var(--header-height) + 16px);
  }

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

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

  .smart-scenario-grid article:nth-child(2) {
    border-inline-end: 0;
  }

  [dir="rtl"] .smart-scenario-grid article:nth-child(2) {
    border-inline-start: 0;
  }

  .smart-scenario-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .smart-room-visual {
    aspect-ratio: 4 / 3;
  }

  .smart-room-visual > img {
    object-position: center;
  }

  .cinema-experience {
    min-height: auto;
  }

  .cinema-experience__content {
    min-height: 760px;
  }

  .cinema-screen-content {
    width: 39%;
    inset-inline-start: 30.5%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .wordmark {
    width: 138px;
    height: 52px;
  }

  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }

  .about-division-card {
    min-height: 310px;
  }

  .language-link {
    padding-inline: 3px;
  }

  .home-hero h1,
  .service-hero h1,
  .faq-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.2rem);
  }

  .home-hero__content > p,
  .service-hero__content > p {
    font-size: 0.9rem;
  }

  .hero-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hero-tabs button {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .principles,
  .sector-grid,
  .feature-card-grid,
  .feature-card-grid--two {
    grid-template-columns: 1fr;
  }

  .visual-service-grid {
    grid-template-columns: 1fr;
  }

  .visual-service-card__body {
    padding-inline: 22px;
  }

  .division-panel {
    min-height: 560px;
    border-radius: 24px;
  }

  .division-panel__content {
    padding-inline: 22px;
  }

  .division-panel h3 {
    font-size: 2.35rem;
  }

  .image-card__body,
  .feature-card {
    padding-inline: 21px;
  }

  .calculator-form {
    grid-template-columns: 1fr;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__message {
    grid-column: auto;
  }

  .screen-configurator__stage {
    padding: 10px;
  }

  .screen-configurator__wall {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .screen-configurator__screen {
    border-width: 3px;
  }

  .screen-dimension--width {
    inset-block-end: -20px;
  }

  .screen-dimension--height {
    inset-inline-end: calc(-50% - 25px);
  }

  .viewing-distance > b {
    font-size: 0.62rem;
  }

  .calculator-form fieldset {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .calculator-form .measure-control:last-child {
    grid-column: auto;
  }

  .calculator-form fieldset label {
    min-width: 120px;
  }

  .calculator-result > div {
    grid-template-columns: 1fr;
  }

  .calculator-result small + small {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .screen-build {
    height: 330vh;
  }

  .screen-build__heading {
    padding-inline: 12px;
  }

  .screen-build__heading h2 {
    font-size: 1.35rem;
  }

  .screen-build__heading p {
    min-height: 42px;
  }

  .screen-stage {
    width: 94vw;
  }

  .scene-console {
    padding-inline: 14px;
  }

  .scene-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .scene-tabs button {
    min-width: 0;
  }

  .range-control {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .smart-story__visual {
    aspect-ratio: 1 / 1;
  }

  .smart-story__visual > img {
    object-position: 50% center;
  }

  .smart-story__caption {
    inset-inline: 20px;
    inset-block-end: 20px;
  }

  .smart-scenario-grid {
    grid-template-columns: 1fr;
  }

  .smart-scenario-grid article,
  [dir="rtl"] .smart-scenario-grid article {
    min-height: auto;
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .smart-scenario-grid article:last-child,
  [dir="rtl"] .smart-scenario-grid article:last-child {
    border-bottom: 0;
  }

  .smart-scenario-grid span {
    margin-bottom: 13px;
  }

  .smart-room-visual {
    aspect-ratio: 1 / 1;
  }

  .smart-room-visual > img {
    object-position: 48% center;
  }

  .cinema-experience {
    padding-block-start: 90px;
  }

  .cinema-experience__content {
    min-height: 720px;
  }

  .cinema-experience__media > img {
    object-position: center;
  }

  .cinema-screen-content {
    width: 55%;
    height: 23%;
    inset-block-start: 25%;
    inset-inline-start: 22.5%;
  }

  .planner-result {
    grid-template-columns: 1fr;
  }

  .planner-result > p {
    grid-column: auto;
  }

  .closing-card {
    border-radius: 24px;
  }

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

  .footer-intro {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .preview-note {
    inset-block-end: 10px;
    inset-inline-start: 10px;
    font-size: 0.59rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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