:root {
  --ink: #090807;
  --ink-soft: #11100f;
  --panel: #151311;
  --panel-2: #1b1816;
  --wine: #781622;
  --wine-bright: #9d2432;
  --wine-deep: #3e0a11;
  --gold: #c6a25c;
  --gold-light: #e0c17f;
  --cream: #f4efe6;
  --muted: #a9a29a;
  --line: rgba(255, 255, 255, 0.11);
  --line-gold: rgba(198, 162, 92, 0.32);
  --font-body: "Manrope", Arial, sans-serif;
  --font-title: "Sora", "Manrope", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--wine);
  color: #fff;
}

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

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid transparent;
  background: rgba(9, 8, 7, 0.68);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(9, 8, 7, 0.92);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 0.18em;
}

.brand-copy small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  color: #cbc5bc;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.25s ease;
}

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

.desktop-nav a:hover {
  color: #fff;
}

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

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 16px;
}

.language-switcher {
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.language-switcher span {
  width: 1px;
  height: 9px;
  background: var(--line);
}

.language-switcher button {
  appearance: none;
  padding: 0;
  border: 0;
  background: none;
  color: #7d7770;
  font: 700 9px/1 var(--font-body);
  cursor: pointer;
  transition: color 0.2s ease;
}

.language-switcher button.active,
.language-switcher button:hover {
  color: var(--gold-light);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease;
}

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

.button-small {
  min-height: 39px;
  padding: 0 17px;
  font-size: 10px;
}

.button-outline {
  border-color: var(--line-gold);
  color: var(--gold-light);
}

.button-outline:hover {
  border-color: var(--gold);
  background: rgba(198, 162, 92, 0.09);
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8f1d2b, #641019);
  box-shadow: 0 16px 45px rgba(105, 14, 26, 0.32);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.2), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.button-primary:hover::before {
  transform: translateX(120%);
}

.button b {
  position: relative;
  font-size: 16px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 142px 0 80px;
  background:
    radial-gradient(circle at 76% 34%, rgba(118, 18, 33, 0.16), transparent 35%),
    linear-gradient(180deg, #090807, #0c0a09);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 70%, transparent);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: 16%;
  right: -19%;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(198, 162, 92, 0.16);
  box-shadow: inset 0 0 120px rgba(111, 15, 29, 0.1);
}

.hero-glow-two {
  right: 7%;
  bottom: -31%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(126, 22, 34, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(198, 162, 92, 0.08);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 630px;
  margin-top: 24px;
  font-size: clamp(46px, 5.15vw, 76px);
  line-height: 1.02;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-copy > p {
  max-width: 595px;
  margin: 25px 0 0;
  color: #aaa39b;
  font-size: 16px;
  line-height: 1.82;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(198, 162, 92, 0.36);
  color: #d6d0c6;
  font-size: 11px;
  font-weight: 700;
}

.text-link i {
  color: var(--gold);
  font-style: normal;
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translate(2px, -2px);
}

.hero-proof {
  display: flex;
  gap: 38px;
  margin-top: 46px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  gap: 5px;
}

.hero-proof strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 16px;
}

.hero-proof span {
  color: #7d7770;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  aspect-ratio: 1.05;
  display: grid;
  place-items: center;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 8% 4% 10% 8%;
  border: 1px solid rgba(198, 162, 92, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 14, 27, 0.2), transparent 65%);
  box-shadow: 0 0 90px rgba(116, 17, 30, 0.13);
}

.visual-frame::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 6%;
  left: 10%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.85), transparent 67%);
  filter: blur(10px);
}

.hero-product {
  position: relative;
  z-index: 2;
  width: 113%;
  max-width: none;
  border-radius: 18px;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(0.9) contrast(1.03);
  mask-image: radial-gradient(ellipse at center, #000 45%, transparent 77%);
  animation: float 6s ease-in-out infinite;
}

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

.floating-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(20, 17, 15, 0.88);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.floating-badge small,
.floating-badge strong {
  display: block;
}

.floating-badge small {
  margin-bottom: 3px;
  color: #756f68;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.floating-badge strong {
  color: #eee8dd;
  font-size: 10px;
}

.badge-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(145deg, var(--wine-bright), var(--wine-deep));
  color: var(--gold-light);
  font: 700 12px var(--font-title);
}

.badge-top {
  top: 18%;
  right: 1%;
}

.badge-bottom {
  bottom: 18%;
  left: 0;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(198, 162, 92, 0.1);
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 22px;
  height: 36px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 3px;
  height: 7px;
  border-radius: 5px;
  background: var(--gold);
  animation: scrollCue 1.8s ease infinite;
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.capabilities-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0b0a;
}

.capabilities-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}

.capabilities-row span {
  color: #8f8982;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.capabilities-row i {
  width: 4px;
  height: 4px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding: 125px 0;
}

.solutions {
  background:
    radial-gradient(circle at 50% 25%, rgba(116, 16, 29, 0.075), transparent 30%),
    #090807;
}

.section-heading {
  max-width: 680px;
}

.section-heading.centered {
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.section-heading h2,
.about-copy h2 {
  margin-top: 18px;
  font-size: clamp(37px, 4.4vw, 58px);
  line-height: 1.08;
}

.section-heading > p {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.feature {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 76px;
  margin-top: 55px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.feature-reverse {
  grid-template-columns: 0.88fr 1.12fr;
}

.feature-reverse .feature-media {
  order: 2;
}

.feature-media {
  min-width: 0;
  position: relative;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(120, 22, 34, 0.18), transparent 65%),
    #11100f;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 162, 92, 0.08);
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature:hover .feature-media img {
  transform: scale(1.025);
}

.media-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(9, 8, 7, 0.75);
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.feature-content {
  padding-right: 28px;
}

.feature-reverse .feature-content {
  padding-right: 0;
  padding-left: 28px;
}

.service-label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.feature-content h3,
.service-card h3 {
  margin: 15px 0;
  font-family: var(--font-title);
  letter-spacing: -0.03em;
}

.feature-content h3 {
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.18;
}

.feature-content p,
.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.feature-content ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.feature-content li {
  position: relative;
  padding-left: 19px;
  color: #c9c2b9;
  font-size: 11px;
}

.feature-content li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.service-link,
.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(198, 162, 92, 0.4);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
}

.service-link b,
.service-card > a b {
  color: var(--gold);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 45px;
  border: 1px solid var(--line);
  background: #11100f;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(198, 162, 92, 0.12);
  border-radius: 50%;
}

.service-card-highlight {
  background: linear-gradient(145deg, rgba(116, 18, 31, 0.2), #11100f 60%);
}

.service-card h3 {
  max-width: 480px;
  font-size: 27px;
  line-height: 1.26;
}

.service-card p {
  max-width: 510px;
  margin-bottom: 28px;
}

.card-symbol {
  width: 51px;
  height: 51px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 5px;
  margin-bottom: 32px;
  padding: 11px;
  border: 1px solid var(--line-gold);
}

.card-symbol span {
  display: block;
  background: linear-gradient(to top, var(--wine), var(--gold));
}

.card-symbol span:nth-child(1) {
  height: 42%;
}

.card-symbol span:nth-child(2) {
  height: 87%;
}

.card-symbol span:nth-child(3) {
  height: 64%;
}

.symbol-network {
  align-items: center;
}

.symbol-network span {
  height: 10px !important;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 162, 92, 0.08);
}

.process {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(100, 13, 25, 0.11), transparent 28%),
    #11100f;
}

.process-orbit {
  position: absolute;
  top: -380px;
  right: -260px;
  width: 860px;
  height: 860px;
  border: 1px solid rgba(198, 162, 92, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgba(255, 255, 255, 0.008),
    0 0 0 190px rgba(255, 255, 255, 0.006);
}

.process-top {
  display: grid;
  grid-template-columns: 1fr 0.63fr;
  align-items: end;
  gap: 90px;
}

.process-top > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.timeline-card {
  position: relative;
  min-height: 385px;
  padding: 20px 18px 28px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.timeline-card + .timeline-card {
  padding-left: 18px;
}

.timeline-card:last-child {
  border-right: 0;
}

.timeline-number {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 32px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(221, 184, 110, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  background: rgba(8, 7, 6, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.timeline-line {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(198, 162, 92, 0.08);
}

.timeline-media {
  position: relative;
  height: 165px;
  overflow: hidden;
  border: 1px solid rgba(198, 162, 92, 0.13);
  background: #090807;
}

.timeline-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 3, 3, 0.03) 35%, rgba(8, 6, 6, 0.52) 100%),
    linear-gradient(135deg, rgba(125, 18, 32, 0.08), transparent 55%);
  pointer-events: none;
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.65s ease;
}

.timeline-card:hover .timeline-media img {
  transform: scale(1.065);
  filter: saturate(1.05) contrast(1.06);
}

.timeline-card h3 {
  margin: 24px 0 12px;
  font-family: var(--font-title);
  font-size: 16px;
}

.timeline-card p {
  margin: 0;
  color: #8e8880;
  font-size: 11px;
  line-height: 1.75;
}

.sectors {
  background:
    radial-gradient(circle at 50% 60%, rgba(125, 18, 32, 0.08), transparent 37%),
    #090807;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sector-grid article {
  min-height: 245px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0908;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.sector-grid article::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 4, 4, 0.08) 18%, rgba(7, 6, 5, 0.32) 54%, rgba(7, 6, 5, 0.94) 100%),
    linear-gradient(135deg, rgba(125, 18, 32, 0.12), transparent 54%);
  transition: background 0.4s ease;
}

.sector-grid article:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(198, 162, 92, 0.26);
}

.sector-grid article:hover::after {
  background:
    linear-gradient(180deg, rgba(5, 4, 4, 0.02) 20%, rgba(7, 6, 5, 0.2) 52%, rgba(7, 6, 5, 0.9) 100%),
    linear-gradient(135deg, rgba(125, 18, 32, 0.16), transparent 58%);
}

.sector-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
}

.sector-grid article:hover .sector-image {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.08);
}

.sector-grid .sector-icon {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 162, 92, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font: 500 18px var(--font-title);
  background: rgba(8, 7, 6, 0.66);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.sector-grid h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-title);
  font-size: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.about {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #100e0d;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.about-brand {
  position: relative;
}

.about-brand::before {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(198, 162, 92, 0.12);
  background:
    linear-gradient(135deg, rgba(120, 20, 34, 0.12), transparent 65%);
}

.about-brand img {
  position: relative;
  width: 100%;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.about-brand-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

.about-brand-line span {
  font: 700 11px var(--font-title);
  letter-spacing: 0.2em;
}

.about-brand-line i {
  height: 1px;
  flex: 1;
  background: var(--line-gold);
}

.about-brand-line small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-copy > p {
  margin: 22px 0 36px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-points > div {
  position: relative;
  display: grid;
  grid-template-columns: 48px 0.65fr 1fr;
  align-items: center;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.about-points span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

.about-points h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 13px;
}

.about-points p {
  margin: 0;
  color: #8e8880;
  font-size: 10px;
  line-height: 1.65;
}

.faq {
  background: #090807;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 120px;
}

.faq .text-link {
  margin-top: 25px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #e6dfd5;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  font-style: normal;
  transition: transform 0.3s ease, background 0.3s ease;
}

.accordion details[open] summary i {
  background: var(--wine);
  color: #fff;
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  margin: -2px 50px 26px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(105deg, #64101b, #7b1724 48%, #4a0b13),
    var(--wine);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 68px 68px;
}

.contact-glow {
  position: absolute;
  top: -320px;
  right: -140px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(224, 193, 127, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.02),
    0 0 0 180px rgba(255, 255, 255, 0.015);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  align-items: center;
  gap: 105px;
}

.kicker.light {
  color: #f0ce8c;
}

.contact h2 {
  margin-top: 18px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
}

.contact h2 em {
  color: #f0cd88;
}

.contact-copy > p {
  max-width: 650px;
  margin: 23px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.button-gold {
  background: var(--gold-light);
  color: #2c180c;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.button-gold:hover {
  background: #f0d596;
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(22, 5, 8, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(18px);
}

.contact-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card-top img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.contact-card-top span {
  color: #f0d291;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-card > a,
.contact-hours {
  display: grid;
  gap: 7px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-hours {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.53);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-card strong {
  font-size: 13px;
}

footer {
  padding: 58px 0 28px;
  background: #080706;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-main > p {
  margin: 0;
  color: #756f68;
  font-size: 10px;
  text-align: center;
}

.footer-main nav {
  display: flex;
  justify-content: flex-end;
  gap: 21px;
}

.footer-main nav a {
  color: #aaa39a;
  font-size: 9px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 44px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #5f5a54;
  font-size: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #1fa957;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 25px;
  fill: #fff;
}

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

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

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 36px, 980px);
  }

  .desktop-nav {
    gap: 19px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(43px, 5.6vw, 64px);
  }

  .feature {
    gap: 45px;
  }

  .feature-content,
  .feature-reverse .feature-content {
    padding: 10px;
  }

  .process-top {
    gap: 45px;
  }

  .about-grid,
  .faq-grid,
  .contact-grid {
    gap: 60px;
  }

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

  .footer-main > p {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 34px);
  }

  .header-inner {
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    display: block;
    background: var(--cream);
    transition: transform 0.25s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 auto;
    height: calc(100vh - 72px);
    display: grid;
    align-content: center;
    gap: 0;
    padding: 35px;
    background: rgba(9, 8, 7, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font: 600 24px var(--font-title);
  }

  .hero {
    min-height: auto;
    padding: 130px 0 75px;
  }

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

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(45px, 8.7vw, 70px);
  }

  .hero-visual {
    max-width: 700px;
    margin: -10px auto -50px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 95px 0;
  }

  .feature,
  .feature-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-reverse .feature-media {
    order: initial;
  }

  .feature-media,
  .feature-media img {
    min-height: 350px;
  }

  .feature-content,
  .feature-reverse .feature-content {
    padding: 10px 5px 20px;
  }

  .process-top,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-card:nth-child(2) {
    border-right: 0;
  }

  .timeline-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .about-brand {
    max-width: 560px;
    margin: 0 auto;
  }

  .faq .section-heading {
    position: static;
  }

  .contact-card {
    max-width: 570px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .language-switcher {
    gap: 5px;
    padding: 6px 7px;
  }

  .hero {
    padding-top: 118px;
  }

  .eyebrow,
  .kicker {
    font-size: 8px;
    letter-spacing: 0.17em;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-copy > p {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-buttons .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    gap: 15px;
    justify-content: space-between;
  }

  .hero-proof strong {
    font-size: 14px;
  }

  .hero-proof span {
    font-size: 7px;
  }

  .hero-visual {
    margin-top: -7px;
    margin-bottom: -28px;
  }

  .floating-badge {
    padding: 8px 10px;
  }

  .badge-top {
    top: 14%;
  }

  .badge-bottom {
    bottom: 13%;
  }

  .capabilities-row {
    min-height: 72px;
    justify-content: space-between;
    gap: 8px;
  }

  .capabilities-row span {
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading.centered {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 34px;
  }

  .feature {
    min-height: 0;
    margin-top: 24px;
    padding: 14px;
  }

  .feature-media,
  .feature-media img {
    min-height: 255px;
  }

  .feature-content h3 {
    font-size: 27px;
  }

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

  .service-card {
    padding: 31px 25px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .process-top {
    gap: 25px;
  }

  .timeline {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .timeline-card,
  .timeline-card + .timeline-card {
    min-height: 0;
    padding: 18px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .timeline-card:first-child {
    border-top: 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-number {
    top: 30px;
    left: 30px;
  }

  .timeline-media {
    height: 210px;
  }

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

  .sector-grid article {
    min-height: 190px;
    padding: 18px;
  }

  .sector-grid .sector-icon {
    top: 14px;
    left: 14px;
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .sector-grid h3 {
    font-size: 12px;
  }

  .about-grid {
    gap: 65px;
  }

  .about-points > div {
    grid-template-columns: 30px 1fr;
  }

  .about-points p {
    grid-column: 2;
  }

  .faq-grid {
    gap: 50px;
  }

  .accordion summary {
    min-height: 73px;
    font-size: 11px;
  }

  .contact {
    padding: 80px 0;
  }

  .contact h2 {
    font-size: 37px;
  }

  .contact-grid {
    gap: 52px;
  }

  .contact-card {
    padding: 24px 20px;
  }

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

  .footer-main nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
  }
}

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

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

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