:root {
  --ink: #171918;
  --ink-soft: #4b504d;
  --paper: #f6f1e8;
  --paper-deep: #ede4d6;
  --white: #fffdf8;
  --copper: #bc5b37;
  --copper-dark: #8f3e24;
  --cyan: #72d8ce;
  --cyan-dark: #187f7b;
  --line: rgba(23, 25, 24, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(28, 25, 19, 0.1);
  --radius: 1.5rem;
  --radius-sm: 1rem;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 12%, rgba(114, 216, 206, 0.12), transparent 23rem),
    radial-gradient(circle at 93% 7%, rgba(188, 91, 55, 0.1), transparent 25rem),
    var(--paper);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(24, 127, 123, 0.48);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--copper);
}

.lang-en {
  display: none !important;
}

html[data-lang="en"] .lang-es {
  display: none !important;
}

html[data-lang="en"] .lang-en {
  display: revert !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-tight {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(114, 216, 206, 0.08), transparent 40%),
    linear-gradient(300deg, rgba(188, 91, 55, 0.11), transparent 35%),
    var(--ink);
}

.section-paper {
  background: rgba(255, 253, 248, 0.56);
  border-block: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.15rem;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow {
  color: var(--cyan);
}

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

h1,
h2,
h3,
h4 {
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.25rem, 8vw, 7rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.display-accent {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.72;
}

.section-dark .lead {
  color: rgba(255, 253, 248, 0.72);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head > div:first-child {
  max-width: 48rem;
}

.section-head h2 {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.35rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border 0.3s var(--ease), transform 0.3s var(--ease);
}

.button::after {
  font-size: 1rem;
  content: "↗";
  transition: transform 0.3s var(--ease);
}

.button:hover {
  color: var(--white);
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translate(2px, -2px);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.section-dark .button-ghost {
  color: var(--white);
  border-color: var(--line-light);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.1rem;
  font-size: 0.72rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: padding 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(246, 241, 232, 0.86);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 4.25rem;
  padding: 0.45rem 0.55rem 0.45rem 1rem;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(23, 25, 24, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(28, 25, 19, 0.06);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 25, 24, 0.18);
  border-radius: 50%;
  background: var(--ink);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 0.54rem 1.25rem;
  background: var(--cyan);
  border-radius: 999px;
  transform: rotate(15deg);
}

.brand-mark::after {
  inset: 0.53rem;
  border: 2px solid var(--copper);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.brand-copy span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 620;
  letter-spacing: 0.17em;
  margin-top: 0.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
}

.main-nav a {
  position: relative;
  padding: 0.8rem 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 690;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-switch {
  display: flex;
  padding: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch button {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.05em;
}

html[data-lang="es"] [data-lang-set="es"],
html[data-lang="en"] [data-lang-set="en"] {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle span::before { top: -0.34rem; }
.menu-toggle span::after { top: 0.34rem; }

.hero {
  display: grid;
  min-height: calc(100vh - 7rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 7.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-copy .lead {
  max-width: 38rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.hero-meta > div {
  min-height: 5.6rem;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.7);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  font-size: 0.83rem;
  line-height: 1.3;
}

.hero-meta span {
  margin-top: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.signal-stage {
  position: relative;
  width: min(100%, 32rem);
  aspect-ratio: 1;
  justify-self: end;
}

.signal-stage::before {
  position: absolute;
  inset: 2%;
  content: "";
  background: radial-gradient(circle, rgba(114, 216, 206, 0.22), transparent 62%);
  filter: blur(18px);
}

.signal-orbit {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(23, 25, 24, 0.18);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.signal-orbit:nth-child(2) {
  inset: 22%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 20s;
}

.signal-orbit:nth-child(3) {
  inset: 35%;
  animation-duration: 13s;
}

.signal-orbit::before {
  position: absolute;
  top: 9%;
  left: 11%;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background: var(--copper);
  border: 0.38rem solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.signal-core {
  position: absolute;
  inset: 31%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 28px 80px rgba(23, 25, 24, 0.25);
}

.signal-core .brand-mark {
  width: 6rem;
  height: 6rem;
  border-color: rgba(255, 255, 255, 0.16);
  transform: scale(1.04);
}

.signal-core .brand-mark::before { inset: 1.15rem 2.78rem; }
.signal-core .brand-mark::after { inset: 1.15rem; border-width: 3px; }

.signal-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(23, 25, 24, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.67rem;
  font-weight: 730;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-label::before {
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background: var(--cyan-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(114, 216, 206, 0.18);
}

.signal-label:nth-of-type(1) { top: 5%; right: 7%; }
.signal-label:nth-of-type(2) { top: 43%; left: -4%; }
.signal-label:nth-of-type(3) { right: -1%; bottom: 12%; }
.signal-label:nth-of-type(4) { bottom: 2%; left: 13%; }

.hero-visual {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12rem 1.6rem 1.6rem 1.6rem;
  box-shadow: 0 34px 90px rgba(28, 25, 19, 0.18);
  isolation: isolate;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(23, 25, 24, 0.78));
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 39rem;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.hero-visual:hover > img { transform: scale(1.025); }

.hero-visual-overlay {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-visual-overlay span {
  padding: 0.9rem 0.45rem 0;
  font-size: 0.62rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-visual-overlay span + span { border-left: 1px solid rgba(255, 255, 255, 0.22); }

.hero-visual-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.75rem;
  color: var(--white);
  background: rgba(23, 25, 24, 0.77);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.hero-visual-badge i {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 0.28rem rgba(114, 216, 206, 0.16);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.trust-item {
  display: flex;
  min-height: 7rem;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 3vw, 2.25rem);
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: 0; }

.trust-number {
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}

.trust-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

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

.category-card {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}

.category-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 11rem;
  height: 11rem;
  content: "";
  border: 1px solid rgba(188, 91, 55, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 1.2rem rgba(114, 216, 206, 0.06), 0 0 0 2.6rem rgba(188, 91, 55, 0.04);
  transition: transform 0.5s var(--ease);
}

.category-card:hover {
  border-color: rgba(188, 91, 55, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.category-card:hover::after { transform: scale(1.2); }

.category-index {
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.category-card h3 {
  max-width: 18ch;
  margin: 2.6rem 0 1rem;
}

.category-card p {
  max-width: 35rem;
  margin: 0;
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.65rem;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}

.service-card:hover {
  border-color: rgba(188, 91, 55, 0.42);
  box-shadow: 0 22px 58px rgba(28, 25, 19, 0.12);
  transform: translateY(-7px);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 9.4;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 0.95rem;
}

.service-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(23, 25, 24, 0.2));
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.045);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 0.85rem 0.9rem;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-price {
  color: var(--copper-dark);
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-link span:last-child {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.service-card:hover .service-card-link span:last-child {
  color: var(--white);
  background: var(--copper);
  transform: rotate(45deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.process-step {
  min-height: 19rem;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  background: rgba(255, 255, 255, 0.035);
  overflow-wrap: normal;
  word-break: normal;
}

.process-step-number {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.process-step h3 {
  margin: 4.2rem 0 1rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.process-step p {
  margin: 0;
  color: rgba(255, 253, 248, 0.67);
  font-size: 0.9rem;
}

.architecture {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.architecture-map {
  position: relative;
  min-height: 33rem;
  background:
    linear-gradient(rgba(23, 25, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 24, 0.05) 1px, transparent 1px),
    rgba(255, 253, 248, 0.7);
  background-size: 2rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.architecture-map::before,
.architecture-map::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(188, 91, 55, 0.28);
  border-radius: 50%;
}

.architecture-map::before { inset: 12% 18%; }
.architecture-map::after { inset: 27% 34%; border-color: rgba(24, 127, 123, 0.34); }

.map-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: 0 12px 30px rgba(23, 25, 24, 0.09);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: float 6s ease-in-out infinite;
}

.map-node::before {
  width: 0.55rem;
  height: 0.55rem;
  content: "";
  background: var(--copper);
  border-radius: 50%;
}

.map-node:nth-child(1) { top: 10%; left: 9%; }
.map-node:nth-child(2) { top: 16%; right: 7%; animation-delay: -1.5s; }
.map-node:nth-child(3) { top: 46%; left: 35%; animation-delay: -3s; }
.map-node:nth-child(4) { bottom: 16%; left: 7%; animation-delay: -4.5s; }
.map-node:nth-child(5) { right: 9%; bottom: 9%; animation-delay: -2s; }

.bullet-list,
.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-soft);
}

.bullet-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  content: "";
  background: var(--cyan-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(114, 216, 206, 0.18);
}

.page-hero {
  padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7.2vw, 6.5rem);
}

.page-hero-side {
  padding: 1.5rem 0 0 2rem;
  border-left: 1px solid var(--line);
}

.page-hero-side p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.page-hero-grid.has-image {
  grid-template-columns: minmax(0, 1.06fr) minmax(19rem, 0.74fr);
  align-items: center;
}

.page-hero-grid.has-image .page-hero-side { align-self: end; }

.page-hero-media {
  position: relative;
  grid-column: 1 / -1;
  height: clamp(24rem, 43vw, 35rem);
  margin: 0;
  padding: 0.65rem;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  box-shadow: var(--shadow);
}

.page-hero-media::after {
  position: absolute;
  inset: 0.65rem;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(23, 25, 24, 0.44));
  border-radius: 1.12rem;
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.12rem;
}

.media-corner {
  position: absolute;
  right: 1.6rem;
  bottom: 1.45rem;
  z-index: 2;
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 740;
  letter-spacing: 0.12em;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a:hover { color: var(--copper-dark); }

.service-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.service-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.service-hero-media {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 0.7rem;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.05rem;
}

.service-hero-media .media-tag {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: rgba(23, 25, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.service-fact {
  padding: 1rem;
  background: rgba(255, 253, 248, 0.75);
}

.service-fact span,
.service-fact strong {
  display: block;
}

.service-fact span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-fact strong {
  margin-top: 0.35rem;
  color: var(--copper-dark);
  font-size: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.38fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.content-main > section + section {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

.content-main h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

.content-main p {
  color: var(--ink-soft);
}

.overview-copy {
  max-width: 48rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.feature-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-checks li {
  min-height: 5rem;
  padding: 1.2rem 1.15rem 1.2rem 3.2rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.feature-checks li::before { top: 1.55rem; left: 1.35rem; }

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.deliverable {
  min-height: 10rem;
  padding: 1.35rem;
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.deliverable span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  margin-bottom: 2rem;
  color: var(--copper-dark);
  background: rgba(188, 91, 55, 0.1);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.deliverable p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
}

.service-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 2rem 0 1rem;
  padding: 1.25rem;
  background:
    linear-gradient(rgba(23, 25, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 24, 0.045) 1px, transparent 1px),
    rgba(255, 253, 248, 0.7);
  background-size: 1.5rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.service-flow::before {
  position: absolute;
  top: 2.52rem;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--copper), var(--cyan-dark));
}

.service-flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.service-flow-node i {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 0.32rem solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  font-size: 0.63rem;
  font-style: normal;
}

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

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  padding: 1.35rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.timeline-count {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--copper-dark);
  background: rgba(188, 91, 55, 0.1);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.timeline-item h3 {
  margin: 0.15rem 0 0.55rem;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.timeline-item p {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  font-size: 0.9rem;
}

.content-aside {
  position: sticky;
  top: 7rem;
  padding: 1.5rem;
  background: var(--ink);
  border-radius: 1.25rem;
  color: var(--white);
  box-shadow: var(--shadow);
}

.content-aside h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.55rem;
}

.content-aside p {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.9rem;
}

.content-aside .button {
  width: 100%;
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.content-aside .aside-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.76rem;
}

.feature-grid,
.industry-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.industry-card,
.value-card {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.feature-card span,
.industry-card span,
.value-card span {
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
}

.feature-card h3,
.industry-card h3,
.value-card h3 {
  margin: 4rem 0 1rem;
  font-size: 1.4rem;
}

.feature-card p,
.industry-card p,
.value-card p {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.faq-list {
  max-width: 58rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 2.5rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  content: "+";
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 400;
  transition: transform 0.3s var(--ease), color 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary::after {
  color: var(--white);
  background: var(--copper);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 48rem;
  padding: 0 0 1.7rem;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-panel p { color: rgba(255, 253, 248, 0.66); }

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

.contact-list a,
.contact-list div {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 0.3rem;
  font-size: 0.93rem;
}

.enquiry-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

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

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

.field label,
.field legend {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select { min-height: 3.25rem; padding: 0 0.95rem; }
.field textarea { min-height: 9rem; padding: 0.9rem 0.95rem; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 4px rgba(114, 216, 206, 0.15);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.25rem 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.consent input { margin-top: 0.28rem; accent-color: var(--copper); }
.consent a { color: var(--copper-dark); text-decoration: underline; }

.form-note,
.form-status {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.form-status {
  display: none;
  padding: 0.8rem 1rem;
  color: #155f5b;
  background: rgba(114, 216, 206, 0.16);
  border-radius: 0.7rem;
}

.form-status.is-visible { display: block; }

.legal-layout {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.legal-nav {
  position: sticky;
  top: 7rem;
  display: grid;
  padding: 0.75rem;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.legal-nav a {
  padding: 0.8rem 0.9rem;
  color: var(--ink-soft);
  border-radius: 0.7rem;
  font-size: 0.76rem;
  font-weight: 680;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.legal-content {
  max-width: 52rem;
}

.legal-content h2 {
  margin: 4rem 0 1.2rem;
  padding-top: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 2.3rem 0 0.8rem; font-size: 1.2rem; letter-spacing: -0.02em; }
.legal-content p,
.legal-content li { color: var(--ink-soft); }
.legal-content li + li { margin-top: 0.55rem; }
.legal-content a { color: var(--copper-dark); text-decoration: underline; }

.legal-box {
  margin: 2rem 0;
  padding: 1.3rem;
  background: rgba(114, 216, 206, 0.1);
  border: 1px solid rgba(24, 127, 123, 0.2);
  border-radius: 0.9rem;
}

.legal-box p:last-child { margin-bottom: 0; }

.cta-band {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--white);
  background: var(--ink);
  border-radius: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(114, 216, 206, 0.22);
  border-radius: 50%;
}

.cta-band::before { right: -8rem; bottom: -11rem; width: 28rem; height: 28rem; }
.cta-band::after { right: 2rem; bottom: -7rem; width: 16rem; height: 16rem; border-color: rgba(188, 91, 55, 0.38); }

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 14ch;
  margin: 0;
}

.cta-band .button {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: var(--white);
  background: #111312;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.footer-intro .brand { color: var(--white); }
.footer-intro .brand-copy span { color: rgba(255, 255, 255, 0.46); }
.footer-intro p { max-width: 27rem; margin-top: 1.6rem; color: rgba(255, 253, 248, 0.56); }

.footer-column h3 {
  margin-bottom: 1.25rem;
  color: rgba(255, 253, 248, 0.42);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0.7rem 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.84rem;
}

.footer-column a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  color: rgba(255, 253, 248, 0.42);
  border-top: 1px solid var(--line-light);
  font-size: 0.72rem;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    #111312;
  background-size: 3rem 3rem;
  overflow: hidden;
}

.intro-loader.is-visible { display: grid; }

.intro-loader::before {
  position: absolute;
  width: min(72vw, 44rem);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(114, 216, 206, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(114, 216, 206, 0.025), 0 0 0 10rem rgba(188, 91, 55, 0.02);
  animation: introPulse 2.1s var(--ease) both;
}

.intro-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.intro-symbol {
  position: relative;
  width: 8.2rem;
  height: 8.2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: symbolReveal 1.2s var(--ease) both;
}

.intro-symbol::before {
  position: absolute;
  inset: 1.6rem 3.8rem;
  content: "";
  background: var(--cyan);
  border-radius: 999px;
  transform: rotate(15deg);
}

.intro-symbol::after {
  position: absolute;
  inset: 1.55rem;
  content: "";
  border: 4px solid var(--copper);
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.intro-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 580;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  animation: introText 0.9s 0.25s var(--ease) both;
}

.intro-subtitle {
  margin: 0.7rem 0 1.8rem;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  animation: introText 0.9s 0.4s var(--ease) both;
}

.intro-progress {
  position: relative;
  width: min(18rem, 62vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.intro-progress::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  transform-origin: left;
  animation: introProgress 1.8s 0.18s var(--ease) both;
}

.intro-loader.is-leaving {
  animation: introLeave 0.65s var(--ease) both;
}

.page-transition {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  color: var(--white);
  background: rgba(23, 25, 24, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(23, 25, 24, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -1.5rem) scale(0.92);
  transition: opacity 0.18s ease, transform 0.35s var(--ease);
  backdrop-filter: blur(16px);
}

.page-transition.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.transition-mark {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--paper);
  border-radius: 50%;
}

.transition-mark::before {
  position: absolute;
  inset: 0.35rem 0.82rem;
  content: "";
  background: var(--cyan-dark);
  border-radius: 999px;
  transform: rotate(15deg);
}

.transition-mark::after {
  position: absolute;
  inset: 0.34rem;
  content: "";
  border: 2px solid var(--copper);
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.52s linear infinite;
}

.transition-copy {
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.transition-meter {
  width: 2.2rem;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.transition-meter::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--cyan);
  transform: translateX(-100%);
}

.page-transition.is-visible .transition-meter::after {
  animation: transitionMeter 0.44s linear both;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 500;
  display: none;
  width: min(calc(100% - 2rem), 28rem);
  padding: 1.2rem;
  color: var(--white);
  background: rgba(23, 25, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  box-shadow: 0 24px 80px rgba(23, 25, 24, 0.32);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible { display: block; animation: cookieIn 0.5s var(--ease) both; }
.cookie-banner h2 { margin-bottom: 0.6rem; font-size: 1.1rem; letter-spacing: -0.02em; }
.cookie-banner p { margin-bottom: 1rem; color: rgba(255, 253, 248, 0.66); font-size: 0.78rem; }
.cookie-banner a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-actions .button { min-height: 2.5rem; padding: 0.65rem 0.85rem; font-size: 0.65rem; border-color: rgba(255,255,255,.18); }
.cookie-actions .button:first-child { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-0.55rem); } }
@keyframes introPulse { from { opacity: 0; transform: scale(0.62); } to { opacity: 1; transform: scale(1); } }
@keyframes symbolReveal { from { opacity: 0; transform: scale(0.6) rotate(-20deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes introText { from { opacity: 0; transform: translateY(1.2rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes introProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes introLeave { to { opacity: 0; transform: scale(1.035); visibility: hidden; } }
@keyframes transitionMeter { to { transform: translateX(0); } }
@keyframes cookieIn { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: min(90vw, 26rem);
    height: 100dvh;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 7rem 2rem 2rem;
    background: var(--white);
    box-shadow: -20px 0 70px rgba(23, 25, 24, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.5s var(--ease);
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateX(0); }
  .main-nav a { padding: 1rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--line); }
  .header-actions .button { display: none; }
  .menu-toggle { display: grid; }
  .header-actions { position: relative; z-index: 2; }
  .hero-grid,
  .page-hero-grid,
  .service-hero-grid,
  .architecture,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 32rem; border-radius: 8rem 1.5rem 1.5rem 1.5rem; }
  .hero-visual > img { min-height: 32rem; }
  .signal-stage { width: min(100%, 29rem); justify-self: center; }
  .page-hero-side { padding-left: 0; border-left: 0; }
  .service-hero-media { order: -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { min-height: 16rem; }
  .content-grid { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 0.8fr); }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .section { padding: 4.5rem 0; }
  .header-inner { gap: 0.75rem; min-height: 3.8rem; padding-left: 0.65rem; }
  .brand { gap: 0.55rem; font-size: 0.66rem; letter-spacing: 0.1em; }
  .brand-mark { width: 2.35rem; height: 2.35rem; }
  .brand-mark::before { inset: 0.48rem 1.08rem; }
  .brand-mark::after { inset: 0.47rem; }
  .brand-copy span { font-size: 0.48rem; }
  .language-switch button { width: 1.9rem; height: 1.9rem; }
  .hero { padding-top: 3rem; }
  .hero-grid { gap: 3.3rem; }
  .hero-visual { min-height: 26rem; border-radius: 5rem 1.2rem 1.2rem 1.2rem; }
  .hero-visual > img { min-height: 26rem; }
  .hero-visual-overlay { right: 0.8rem; bottom: 0.9rem; left: 0.8rem; }
  .hero-visual-overlay span { padding-inline: 0.2rem; font-size: 0.51rem; }
  .page-hero-media { height: 23rem; }
  .hero-meta { grid-template-columns: 1fr; }
  .signal-label { font-size: 0.55rem; padding: 0.5rem 0.65rem; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { align-items: flex-start; flex-direction: column; }
  .category-grid,
  .service-grid,
  .feature-grid,
  .industry-grid,
  .value-grid,
  .process-grid,
  .deliverable-grid { grid-template-columns: 1fr; }
  .service-card-media { aspect-ratio: 16 / 9; }
  .process-step { min-height: 13rem; }
  .process-step h3 { margin-top: 2.8rem; }
  .feature-checks,
  .timeline { grid-template-columns: 1fr; }
  .service-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem 0.65rem; }
  .service-flow::before { display: none; }
  .architecture-map { min-height: 25rem; }
  .service-facts { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  h1 { font-size: 3rem; }
  .hero-meta { margin-top: 2rem; }
  .hero-visual { min-height: 22rem; border-radius: 3.5rem 1rem 1rem 1rem; }
  .hero-visual > img { min-height: 22rem; }
  .hero-visual-badge { top: 0.8rem; right: 0.8rem; font-size: 0.5rem; }
  .page-hero-media { height: 18rem; padding: 0.45rem; }
  .page-hero-media::after { inset: 0.45rem; }
  .signal-stage { transform: scale(0.92); }
  .signal-label:nth-of-type(2) { left: 0; }
  .signal-label:nth-of-type(3) { right: 0; }
  .legal-nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
