:root {
  --bg: #111311;
  --bg-soft: #171a18;
  --panel: rgba(26, 30, 27, 0.88);
  --panel-strong: rgba(14, 17, 15, 0.95);
  --line: rgba(255, 255, 255, 0.08);
  --text: #edf0e8;
  --muted: #b8c0b4;
  --copper: #b87333;
  --copper-soft: #d89958;
  --sand: #efe6d6;
  --success: #90c5a0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 115, 51, 0.14), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(239, 230, 214, 0.08), transparent 20%),
    linear-gradient(160deg, #0f110f 0%, #171a18 48%, #0f1311 100%);
}

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

button,
.button {
  font: inherit;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.25));
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(13, 15, 14, 0.86), rgba(22, 25, 22, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 280px;
  background: radial-gradient(circle at left center, rgba(184, 115, 51, 0.16), transparent 72%);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 153, 88, 0.28), rgba(255, 255, 255, 0.04), rgba(216, 153, 88, 0.2));
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-logo {
  display: block;
  width: clamp(170px, 15vw, 240px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 22px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--copper), var(--sand));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-switcher a:hover,
.lang-switcher a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.lang-switcher a.is-active,
.lang-switcher a[aria-current="page"] {
  color: #131614;
  background: linear-gradient(135deg, var(--sand), var(--copper-soft));
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #131614;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sand), var(--copper-soft));
  box-shadow: 0 10px 24px rgba(184, 115, 51, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 115, 51, 0.3);
}

.button-ghost,
.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 42px;
  align-items: start;
  padding: 26px 0 44px;
}

.section {
  padding: 56px 0;
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  background: linear-gradient(145deg, rgba(24, 28, 25, 0.92), rgba(17, 19, 17, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.band-points {
  display: grid;
  gap: 12px;
}

.band-points p {
  margin: 0;
  padding: 16px 18px;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.8vw, 4.8rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.hero-text,
.section-heading p {
  max-width: 62ch;
  font-size: 0.98rem;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-tech-shell {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(216, 153, 88, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(21, 25, 22, 0.92), rgba(10, 13, 11, 0.96));
  box-shadow: var(--shadow);
}

.hero-tech-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tech-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(216, 153, 88, 0.24);
  border-radius: 999px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.hero-tech-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.hero-tech-panel {
  display: grid;
  gap: 12px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-tech-panel strong {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.hero-tech-panel-primary {
  grid-row: span 2;
}

.hero-tech-label {
  color: var(--copper-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-tech-bars {
  display: grid;
  gap: 10px;
}

.hero-tech-bars i,
.hero-tech-nodes i {
  display: block;
  border-radius: 999px;
}

.hero-tech-bars i {
  height: 10px;
  background: linear-gradient(90deg, rgba(216, 153, 88, 0.2), rgba(216, 153, 88, 0.9));
}

.hero-tech-bars i:nth-child(1) { width: 92%; }
.hero-tech-bars i:nth-child(2) { width: 74%; }
.hero-tech-bars i:nth-child(3) { width: 84%; }
.hero-tech-bars i:nth-child(4) { width: 63%; }
.hero-tech-bars i:nth-child(5) { width: 88%; }

.hero-tech-nodes {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tech-nodes i {
  position: relative;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--sand), var(--copper-soft));
  box-shadow: 0 0 0 4px rgba(216, 153, 88, 0.12);
}

.hero-tech-nodes i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 18px;
  height: 1px;
  background: rgba(216, 153, 88, 0.5);
}

.hero-tech-nodes i:last-child::after {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-badge {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-badge span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.4;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.hero-proof div,
.hero-card,
.stat-card,
.feature-card,
.solution-card,
.timeline-step,
.application-card,
.markets-visual,
.markets-card,
.contact-panel,
.contact-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.hero-proof div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.proof-label,
.mini-label {
  display: block;
  margin-bottom: 6px;
  color: var(--copper-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.hero-card-primary {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 153, 88, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(37, 42, 38, 0.92), rgba(15, 18, 16, 0.96));
}

.hero-card-primary::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.34), transparent 65%);
}

.hero-showcase {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-showcase-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 500ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-showcase figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 10px;
}

.hero-showcase strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
  text-wrap: balance;
}

.hero-showcase-dots {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.hero-showcase-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-showcase-dot:hover,
.hero-showcase-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(239, 230, 214, 0.64);
}

.hero-showcase-dot.is-active {
  background: linear-gradient(135deg, var(--sand), var(--copper-soft));
}

.signal-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--sand);
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand), var(--copper-soft));
}

.hero-card-photo {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 12px;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(216, 153, 88, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(7, 10, 9, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-grid,
.card-grid,
.solution-grid,
.application-grid,
.gallery-grid,
.timeline,
.contact-cards {
  display: grid;
  gap: 18px;
}

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

.stat-card,
.feature-card,
.solution-card,
.timeline-step,
.application-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.stat-card h2,
.contact-panel h2 {
  max-width: none;
}

.stat-card h2 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.16;
}

.feature-card h3,
.solution-card h3,
.timeline-step h3,
.application-card h3,
.markets-card h3 {
  font-size: 1.08rem;
  line-height: 1.22;
}

.feature-card p,
.solution-card p,
.timeline-step p,
.application-card p,
.markets-card li,
.band-points p,
.contact-card strong,
.contact-card span {
  font-size: 0.94rem;
}

.contact-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.stat-card span,
.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #10130f;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sand), var(--copper-soft));
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

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

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

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

.process-section {
  position: relative;
}

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

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

.application-card {
  position: relative;
  overflow: hidden;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -24px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.22), transparent 70%);
}

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

.media-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.media-card-wide {
  grid-column: span 2;
}

.media-card-wide img {
  aspect-ratio: 16 / 9;
}

.markets-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}

.markets-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 58%, rgba(216, 153, 88, 0.12), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(135deg, rgba(23, 28, 25, 0.96), rgba(10, 13, 11, 0.98));
}

.market-map {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.55;
}

.market-map-svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.26));
}

.market-land {
  fill: rgba(245, 239, 230, 0.08);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.market-land-africa {
  fill: rgba(184, 115, 51, 0.2);
  stroke: rgba(216, 153, 88, 0.62);
}

.market-target {
  position: absolute;
  transform: translate(-50%, -50%);
}

.market-target-pin {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--copper-soft));
  box-shadow:
    0 0 0 4px rgba(216, 153, 88, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.market-target-pin::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(216, 153, 88, 0.65);
  animation: mapPinPulse 2.8s ease-out infinite;
}

.market-target-label {
  position: absolute;
  top: -20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(216, 153, 88, 0.28);
  border-radius: 999px;
  color: var(--sand);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(12, 15, 13, 0.9);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.market-target-label::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 153, 88, 0.7), rgba(216, 153, 88, 0));
  transform: translateY(-50%);
}

.market-target-right .market-target-label {
  left: 20px;
  right: auto;
}

.market-target-right .market-target-label::before {
  left: -18px;
}

.market-target-left .market-target-label {
  right: 20px;
  left: auto;
}

.market-target-left .market-target-label::before {
  right: -18px;
  left: auto;
  background: linear-gradient(90deg, rgba(216, 153, 88, 0), rgba(216, 153, 88, 0.7));
}

.market-target-algeria {
  top: 38%;
  left: 50.6%;
}

.market-target-morocco {
  top: 37%;
  left: 48.5%;
}

.market-target-tanzania {
  top: 52%;
  left: 56%;
}

.market-target-angola {
  top: 60%;
  left: 51.5%;
}

.market-map-badge {
  position: absolute;
  left: 24px;
  bottom: 20px;
  display: grid;
  gap: 6px;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 153, 88, 0.18);
  border-radius: 18px;
  background: rgba(10, 13, 11, 0.72);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.market-map-badge span {
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.market-map-badge strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.38;
}

.markets-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.markets-card ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.markets-card li {
  padding: 14px 16px;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
}

.contact-section {
  padding-bottom: 90px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right top, rgba(216, 153, 88, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(26, 30, 27, 0.92), rgba(14, 17, 15, 0.97));
}

.contact-cards {
  align-content: start;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 153, 88, 0.45);
}

.contact-card span {
  color: var(--copper-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--text);
  font-size: 1.04rem;
}

.partners-section {
  padding-top: 16px;
}

.partner-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.partner-card {
  position: relative;
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px 18px;
  border-radius: 26px;
  border: 1px solid rgba(216, 153, 88, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(11, 14, 13, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -36px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18), transparent 68%);
  pointer-events: none;
}

.partner-logo-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 150px;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}

.partner-logo-caption {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sand);
}

.partner-logo {
  position: relative;
  z-index: 1;
  display: inline-grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1;
}

.partner-logo span,
.partner-logo-abb,
.partner-logo-bemis {
  font-weight: 800;
}

.partner-logo small {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  opacity: 0.88;
}

.partner-logo-schneider {
  color: #34d16f;
  text-shadow: 0 0 24px rgba(52, 209, 111, 0.18);
}

.partner-logo-schneider span {
  font-size: 1.12rem;
}

.partner-logo-abb {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #ef3d36;
  letter-spacing: 0.05em;
  text-shadow: 0 0 28px rgba(239, 61, 54, 0.18);
}

.partner-logo-phoenix {
  color: #f57c24;
  text-shadow: 0 0 24px rgba(245, 124, 36, 0.18);
}

.partner-logo-phoenix span {
  font-size: 1.06rem;
}

.partner-logo-bemis {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  color: #f3e8d4;
}

.partner-logo-gamak {
  color: #dcb17e;
}

.partner-logo-gamak span {
  font-size: 1.3rem;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 0 0 42px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  color: inherit;
}

.site-footer p:first-child {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.site-footer span {
  margin: 0 8px;
}

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

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mapPinPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.7);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.7);
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .hero,
  .section-band,
  .contact-panel,
  .markets-layout {
    grid-template-columns: 1fr;
  }

  .card-grid-4,
  .solution-grid,
  .timeline,
  .application-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-tech-grid {
    grid-template-columns: 1fr;
  }

  .hero-tech-panel-primary {
    grid-row: auto;
  }

  .markets-visual {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .desktop-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 6px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-proof,
  .hero-badges,
  .hero-grid,
  .hero-tech-grid,
  .card-grid-3,
  .card-grid-4,
  .solution-grid,
  .timeline,
  .application-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .media-card-wide {
    grid-column: auto;
  }

  .markets-visual {
    min-height: 320px;
  }

  .market-map {
    width: min(100%, 100%);
    aspect-ratio: 1.15;
  }

  .market-target-label {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .market-map-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(184, 115, 51, 0.18), transparent 36%),
      linear-gradient(180deg, #0f110f 0%, #171a18 54%, #0f1311 100%);
  }

  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    top: 10px;
    padding: 12px 14px;
  }

  .brand-logo {
    width: min(100%, 220px);
  }

  h1 {
    max-width: 11ch;
  }

  h2 {
    max-width: 100%;
  }

  .section {
    padding: 42px 0;
  }

  .section-band,
  .contact-panel {
    padding: 22px;
  }

  .hero-proof div,
  .hero-card,
  .stat-card,
  .feature-card,
  .solution-card,
  .timeline-step,
  .application-card {
    padding: 20px;
  }

  .site-footer span {
    display: none;
  }

  .site-footer p:nth-child(3) {
    display: grid;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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