:root {
  --ink: #0b1f1e;
  --teal-deep: #0f3d3a;
  --teal: #12968a;
  --teal-bright: #1ab3a5;
  --gold: #b8975a;
  --text: #152a28;
  --muted: #5a6f6c;
  --canvas: #e8efea;
  --line: rgba(15, 61, 58, 0.12);
  --font-ar: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Sora", "Cairo", sans-serif;
  --header-h: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ar);
  background: var(--canvas);
  line-height: 1.55;
}

html[lang="en"] body,
html[lang="en"] .hero-title,
html[lang="en"] .section-title {
  font-family: var(--font-en);
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-lead,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-lead,
html[dir="rtl"] .system-kicker,
html[dir="rtl"] .careers-kicker,
html[dir="rtl"] .security-kicker,
html[dir="rtl"] .dir-title,
html[dir="rtl"] .dir-lead {
  text-align: right;
}

html[dir="ltr"] .hero-title,
html[dir="ltr"] .hero-lead,
html[dir="ltr"] .section-title,
html[dir="ltr"] .section-lead,
html[dir="ltr"] .system-kicker,
html[dir="ltr"] .careers-kicker,
html[dir="ltr"] .security-kicker,
html[dir="ltr"] .dir-title,
html[dir="ltr"] .dir-lead {
  text-align: left;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* —— Top bar —— */
.topbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  color: #fff;
}

.topbar.is-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(10px);
}

.topbar-brand,
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.08em;
  flex-shrink: 0;
  line-height: 1;
}

.logo-lockup__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 1.05em;
  height: 1.1em;
  flex-shrink: 0;
  font-size: 1.7rem;
}

.logo-lockup__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-lockup__type {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.055em;
  color: #fff;
}

.topbar.is-solid .logo-lockup__type {
  color: var(--ink);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.topbar-nav a {
  position: relative;
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.topbar-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
  opacity: 0.85;
}

.topbar-nav a:hover {
  opacity: 1;
  color: var(--teal-bright);
}

.topbar-nav a:hover::after {
  transform: scaleX(1);
}

.topbar.is-solid .topbar-nav a:hover {
  color: var(--teal);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.lang-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  opacity: 0.9;
  font-weight: 600;
}

.lang-toggle:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-bright);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: inherit;
  background: transparent;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
}

.topbar.is-solid .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.topbar.is-solid .btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 30, 0.62) 0%, rgba(11, 31, 30, 0.42) 40%, rgba(11, 31, 30, 0.92) 100%),
    linear-gradient(270deg, rgba(11, 31, 30, 0.72) 0%, rgba(11, 31, 30, 0.35) 42%, transparent 70%);
}

html[dir="ltr"] .hero-veil {
  background:
    linear-gradient(180deg, rgba(11, 31, 30, 0.62) 0%, rgba(11, 31, 30, 0.42) 40%, rgba(11, 31, 30, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 31, 30, 0.72) 0%, rgba(11, 31, 30, 0.35) 42%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 2.5rem));
  margin: 0;
  padding: calc(var(--header-h) + 1.5rem) 0 4rem;
  text-align: start;
}

html[dir="ltr"] .hero-inner {
  margin-inline-start: max(1.25rem, calc((100% - 1100px) / 2));
  margin-inline-end: auto;
}

html[dir="rtl"] .hero-inner {
  margin-inline-end: max(1.25rem, calc((100% - 1100px) / 2));
  margin-inline-start: auto;
}

.logo-lockup--hero,
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.06em;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

.logo-lockup--hero .logo-lockup__mark {
  font-size: clamp(3.4rem, 8vw, 5.2rem);
  animation: mark-float 4.5s ease-in-out infinite;
}

.logo-lockup--hero .logo-lockup__type {
  font-size: clamp(3.4rem, 8vw, 5.2rem);
  color: #fff;
  letter-spacing: -0.06em;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.4rem;
  inset-inline-start: 50%;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
  transform: translateX(-50%);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.85s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scaleY(0.85);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes mark-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes soft-glow {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(18, 150, 138, 0.18);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(18, 150, 138, 0.28);
  }
}

/* Scroll-triggered motion */
.js-motion {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0s);
  will-change: opacity, transform;
}

.js-motion.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-motion--fade {
  transform: none;
}

.js-motion--fade.is-inview {
  transform: none;
}

.js-motion--left {
  transform: translate3d(1.5rem, 0, 0);
}

html[dir="ltr"] .js-motion--left {
  transform: translate3d(-1.5rem, 0, 0);
}

.js-motion--left.is-inview {
  transform: translate3d(0, 0, 0);
}

.js-motion--scale {
  transform: translate3d(0, 1rem, 0) scale(0.97);
}

.js-motion--scale.is-inview {
  transform: translate3d(0, 0, 0) scale(1);
}

/* —— Trust —— */
.trust-band {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.35rem 1.25rem;
}

.trust-line {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  font-weight: 600;
  font-size: 1.02rem;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services */
.section-services {
  background: #f4f8f5;
}

.service-rows {
  margin-top: 2.5rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1.4fr;
  gap: 1.5rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-inline-start 0.35s ease, background 0.35s ease;
}

.service-row:hover {
  padding-inline-start: 0.5rem;
}

.service-row h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--teal-deep);
  transition: color 0.25s ease;
}

.service-row:hover h3 {
  color: var(--teal);
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

/* Directions — visible visual blocks */
.section-directions {
  background: #fff;
  padding-bottom: 0;
}

.section-directions > .section-inner {
  margin-bottom: 2rem;
}

.dir-stack {
  display: grid;
  gap: 0;
}

.dir-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: min(72vh, 640px);
  background: var(--canvas);
}

.dir-block--flip .dir-media {
  order: 2;
}

.dir-block--flip .dir-copy {
  order: 1;
}

.dir-block--feature {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  min-height: auto;
  background: var(--ink);
  color: #fff;
}

.dir-block--feature .dir-title,
.dir-block--feature .dir-kicker {
  color: #fff;
}

.dir-block--feature .dir-lead,
.dir-block--feature .dir-points li,
.dir-block--feature .virtual-detail p {
  color: rgba(255, 255, 255, 0.78);
}

.dir-block--feature .virtual-detail {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.dir-block--feature .virtual-detail article {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.dir-block--feature .virtual-detail h4 {
  color: var(--teal-bright);
}

.dir-block--feature .dir-points li::before {
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(26, 179, 165, 0.2);
}

.dir-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 280px;
}

.dir-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s ease;
}

.dir-block:hover .dir-media img {
  transform: scale(1.08);
}

.dir-media-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(11, 31, 30, 0.18));
  pointer-events: none;
}

html[dir="rtl"] .dir-media-veil {
  background: linear-gradient(270deg, transparent 40%, rgba(11, 31, 30, 0.18));
}

.dir-block--feature .dir-media-veil {
  background: linear-gradient(180deg, transparent 35%, rgba(11, 31, 30, 0.55));
}

.dir-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
}

.dir-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
}

.dir-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--teal-deep);
}

.dir-lead {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.dir-points {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.dir-points li {
  position: relative;
  padding-inline-start: 1.35rem;
  color: var(--text);
  font-weight: 600;
}

.dir-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.virtual-detail {
  margin-top: 1.5rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.virtual-detail article {
  display: grid;
  grid-template-columns: minmax(140px, 0.85fr) 1.35fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.virtual-detail h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--teal-bright);
}

.virtual-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.dir-block.is-inview .dir-copy {
  animation: rise 0.7s ease both;
}

.dir-block.is-inview .dir-media img {
  animation: hero-drift 14s ease-in-out infinite alternate;
}

/* Collection system — journey path (not feature cards) */
.section-system {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26, 179, 165, 0.12), transparent 55%),
    var(--ink);
  color: #fff;
  padding-bottom: 4rem;
  overflow: hidden;
}

.section-system .section-title,
.section-system .section-lead {
  color: #fff;
}

.section-system .section-lead {
  opacity: 0.8;
  max-width: 40rem;
}

.system-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.system-flow {
  list-style: none;
  margin: 2.75rem auto 0;
  padding: 0 1.25rem;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
  counter-reset: none;
}

.system-flow::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(26, 179, 165, 0.55) 15%,
    rgba(26, 179, 165, 0.55) 85%,
    transparent
  );
  pointer-events: none;
}

.system-flow li {
  position: relative;
  z-index: 1;
  padding: 0 0.65rem;
  text-align: center;
}

.system-flow.is-inview .system-flow-num {
  animation: soft-glow 2.4s ease-in-out 0.4s 2;
}

.system-flow.is-inview::before {
  animation: rise 0.9s ease both;
}

.system-flow h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.system-flow p {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.system-screen {
  margin: 2.75rem auto 0;
  padding: 0 1.25rem;
  max-width: 1100px;
}

.system-screen img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(26, 179, 165, 0.12);
  transform: perspective(1200px) rotateX(2deg);
  transition: transform 0.5s ease;
}

.system-screen:hover img {
  transform: perspective(1200px) rotateX(0deg) translateY(-4px);
}

.system-screen figcaption {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* Method */
.section-method {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.section-method .section-title,
.section-method .section-lead {
  color: #fff;
}

.section-method .section-lead {
  opacity: 0.78;
}

.method-stage {
  position: absolute;
  inset: auto -10% -40% auto;
  width: min(520px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 179, 165, 0.28), transparent 68%);
  pointer-events: none;
}

.method-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.method-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.method-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--teal-bright);
  line-height: 1;
  min-width: 2.2rem;
}

.method-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.method-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Security */
.section-security {
  background: #fff;
  border-top: 1px solid var(--line);
}

.security-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.security-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.security-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.55rem 1.25rem 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.security-item:nth-child(odd) {
  padding-inline-end: 1.5rem;
  border-inline-end: 1px solid var(--line);
}

.security-item:nth-child(even) {
  padding-inline-start: 1.5rem;
}

.security-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
  line-height: 1.2;
  min-width: 2rem;
  padding-top: 0.15rem;
}

.security-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  color: var(--teal-deep);
}

.security-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.security-note {
  margin-top: 2.25rem;
  padding: 1.35rem 1.5rem;
  border-inline-start: 3px solid var(--teal);
  background: #f4f8f5;
}

.security-note p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.7;
  max-width: 52rem;
}

/* Careers */
.section-careers {
  background: var(--canvas);
}

.careers-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.careers-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.careers-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding-inline 0.3s ease;
}

.careers-row:hover {
  padding-inline-start: 0.35rem;
}

.careers-info h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.careers-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.careers-apply {
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.careers-row:hover .careers-apply {
  border-color: var(--teal);
  color: var(--teal);
}

.careers-note {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.careers-note p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Why */
.section-why {
  background: var(--canvas);
}

.why-list {
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.why-list li {
  position: relative;
  padding-inline-start: 1.6rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}

.why-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(18, 150, 138, 0.18);
}

/* Contact */
.section-contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-meta {
  margin: 2rem 0 0;
  display: grid;
  gap: 1.1rem;
}

.contact-meta dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
}

.contact-meta dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-meta a:hover {
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.5rem;
  background: var(--canvas);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(18, 150, 138, 0.35);
  border-color: var(--teal);
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note {
  margin: 0;
  color: var(--teal-deep);
  font-weight: 600;
}

.form-error {
  margin: 0;
  color: #9b1c1c;
  font-weight: 600;
  font-size: 0.92rem;
}

.careers-form {
  margin-top: 1.75rem;
  position: relative;
}

.careers-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: var(--teal-deep);
}

.careers-note {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.careers-note p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.logo-lockup--footer,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.08em;
}

.logo-lockup--footer .logo-lockup__mark {
  font-size: 1.55rem;
}

.logo-lockup--footer .logo-lockup__type {
  font-size: 1.55rem;
  color: #fff;
}

.footer-tag {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  opacity: 0.65;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .topbar-nav {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .virtual-detail article {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .system-flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .system-flow::before {
    display: none;
  }

  .system-flow li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    text-align: start;
    padding: 0;
  }

  .system-flow-num {
    grid-row: 1 / span 2;
    align-self: start;
    margin-bottom: 0;
  }

  .system-screen img {
    transform: none;
  }

  .system-screen:hover img {
    transform: none;
  }

  .dir-block,
  .dir-block--feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dir-block--flip .dir-media,
  .dir-block--flip .dir-copy {
    order: initial;
  }

  .dir-media {
    min-height: 220px;
    max-height: 280px;
  }

  .method-list {
    grid-template-columns: 1fr;
  }

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

  .security-item:nth-child(odd),
  .security-item:nth-child(even) {
    padding-inline: 0;
    border-inline-end: 0;
  }

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

@media (max-width: 560px) {
  .hero-inner {
    padding-bottom: 4.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .btn-ghost {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-media img,
  .hero-scroll,
  .logo-lockup--hero .logo-lockup__mark,
  .dir-block.is-inview .dir-copy,
  .dir-block.is-inview .dir-media img,
  .dir-block:hover .dir-media img,
  .system-flow.is-inview .system-flow-num,
  .js-motion {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .js-motion,
  .js-motion--fade,
  .js-motion--left,
  .js-motion--scale {
    opacity: 1;
    transform: none;
  }

  .dir-media img {
    transform: none !important;
  }

  .btn:hover,
  .btn:active,
  .service-row:hover,
  .careers-row:hover {
    transform: none;
    padding-inline-start: 0;
  }
}
