:root {
  color-scheme: dark;
  --bg: #070b1a;
  --panel: rgba(20, 28, 60, 0.62);
  --panel-strong: rgba(20, 28, 60, 0.88);
  --stroke: rgba(195, 215, 255, 0.22);
  --text: #f2f6ff;
  --muted: rgba(242, 246, 255, 0.74);
  --accent: #ff6200;
  --accent-2: #4de5ff;
  --accent-3: #9b7bff;
  --accent-warm: #ff9d3d;
  --glow-accent: rgba(255, 98, 0, 0.3);
  --glow-cyan: rgba(77, 229, 255, 0.22);
  --glow-purple: rgba(155, 123, 255, 0.18);
  --shadow: 0 18px 78px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 10px 46px rgba(0, 0, 0, 0.32);
  --grid-size: 44px;
  --hero-image: url("./assets/Avisol_Hero.png");
  --nav-height: 88px;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 98, 0, 0.22), transparent 40%),
    radial-gradient(circle at 82% 12%, rgba(77, 229, 255, 0.16), transparent 44%),
    radial-gradient(circle at 60% 110%, rgba(155, 123, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #070b1a 0%, #0a1030 55%, #070b1a 100%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
  padding-top: 0;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(242, 246, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 246, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(77, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 229, 255, 0.04) 1px, transparent 1px);
  background-size:
    var(--grid-size) var(--grid-size),
    var(--grid-size) var(--grid-size),
    calc(var(--grid-size) / 3) calc(var(--grid-size) / 3),
    calc(var(--grid-size) / 3) calc(var(--grid-size) / 3);
  background-position: 0 0, 0 0, 0 0, 0 0;
  opacity: 0.16;
  mix-blend-mode: overlay;
  overflow: hidden;
  will-change: background-position;
  animation: grid-drift 26s linear infinite;
  z-index: 0;
}

.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 98, 0, 0.08) 45%, transparent 70%),
    repeating-linear-gradient(0deg, rgba(242, 246, 255, 0.05) 0px, rgba(242, 246, 255, 0.05) 1px, transparent 1px, transparent 4px);
  opacity: 0.22;
  mix-blend-mode: overlay;
  will-change: transform;
  animation: scan-sweep 10s linear infinite;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 180px 90px, 180px 90px, -140px -70px, -140px -70px;
  }
}

@keyframes scan-sweep {
  from {
    transform: translateY(-12%);
  }
  to {
    transform: translateY(12%);
  }
}

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

[id] {
  scroll-margin-top: calc(var(--nav-height) + 26px);
}

::selection {
  background: rgba(77, 229, 255, 0.22);
  color: var(--text);
}

.btn:focus-visible,
.pill:focus-visible,
.lang-btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(77, 229, 255, 0.55);
  outline-offset: 2px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, 94vw);
  margin: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(14px, 4vw, 32px);
  backdrop-filter: saturate(1.35) blur(18px);
  background: rgba(12, 18, 40, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(195, 215, 255, 0.18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 98, 0, 0.06) inset,
    0 0 34px rgba(255, 98, 0, 0.12), 0 0 60px rgba(77, 229, 255, 0.08);
  transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 98, 0, 0.26),
    rgba(77, 229, 255, 0.18),
    rgba(155, 123, 255, 0.18)
  );
  opacity: 0.16;
  z-index: -1;
  border-radius: 16px;
}

.nav::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 98, 0, 0.42), rgba(77, 229, 255, 0.26), rgba(155, 123, 255, 0.28));
  filter: blur(16px);
  opacity: 0.22;
  z-index: -2;
}

.nav.is-floating {
  padding: 14px 24px;
  background: rgba(12, 18, 40, 0.9);
  box-shadow: 0 22px 86px rgba(0, 0, 0, 0.58), 0 8px 22px rgba(0, 0, 0, 0.22),
    0 0 42px rgba(255, 98, 0, 0.12), 0 0 64px rgba(77, 229, 255, 0.08);
  border-color: rgba(255, 98, 0, 0.22);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(195, 215, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  width: 44px;
  height: 44px;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 98, 0, 0.35);
  background: rgba(255, 98, 0, 0.08);
}

.nav-toggle .line {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(234, 240, 255, 0.82);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle .line:nth-child(1) {
  top: 15px;
}

.nav-toggle .line:nth-child(2) {
  top: 21px;
}

.nav-toggle .line:nth-child(3) {
  top: 27px;
}

.nav.menu-open .nav-toggle .line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav.menu-open .nav-toggle .line:nth-child(2) {
  opacity: 0;
}

.nav.menu-open .nav-toggle .line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  line-height: 1;
}

.logo-img {
  display: block;
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
}

.nav a:not(.logo) {
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 98, 0, 0.14);
  color: var(--text);
}

.nav-links a.is-active {
  background: rgba(255, 98, 0, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 98, 0, 0.22) inset, 0 0 20px rgba(255, 98, 0, 0.14);
}

.lang-switch {
  display: inline-flex;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  gap: 6px;
  box-shadow: 0 0 0 1px rgba(255, 98, 0, 0.06) inset;
}

.lang-btn {
  border: 1px solid transparent;
  background: transparent;
  color: rgba(234, 240, 255, 0.7);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-btn.active {
  color: var(--text);
  border-color: rgba(255, 98, 0, 0.28);
  background: rgba(255, 98, 0, 0.14);
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(255, 98, 0, 0.12);
}

.pill {
  padding: 10px 16px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(255, 98, 0, 0.06) inset;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill.ghost {
  background: transparent;
}

.pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 98, 0, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 98, 0, 0.12) inset, 0 0 22px rgba(255, 98, 0, 0.14), 0 0 36px rgba(77, 229, 255, 0.06);
}

.hero {
  position: relative;
  padding: calc(var(--nav-height) + 32px) 0 96px;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 26, 0.84) 0%, rgba(10, 16, 48, 0.64) 58%, rgba(7, 11, 26, 0.92) 100%),
    url("./assets/sky_view.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 98, 0, 0.16), transparent 44%),
    radial-gradient(circle at 78% 18%, rgba(77, 229, 255, 0.16), transparent 42%),
    radial-gradient(circle at 20% 88%, rgba(155, 123, 255, 0.12), transparent 52%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  width: 100%;
  display: grid;
  margin-top: 14px;
}

.hero-surface {
  position: relative;
  min-height: 760px;
  padding: 42px;
  border-radius: 28px;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255, 98, 0, 0.18), transparent 44%),
    radial-gradient(circle at 78% 18%, rgba(77, 229, 255, 0.16), transparent 46%),
    linear-gradient(140deg, rgba(7, 11, 26, 0.82) 0%, rgba(7, 11, 26, 0.42) 48%, rgba(7, 11, 26, 0.74) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center 12%;
  border: 1px solid rgba(195, 215, 255, 0.18);
  box-shadow: 0 26px 110px rgba(0, 0, 0, 0.58), 0 0 46px rgba(255, 98, 0, 0.1), 0 0 72px rgba(77, 229, 255, 0.06);
  overflow: visible;
  z-index: 0;
  isolation: isolate;
}

.hero-inner {
  position: relative;
  width: min(1240px, 94vw);
  margin: 0 auto;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-content: start;
  z-index: 1;
}

.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 26%, rgba(155, 123, 255, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(255, 98, 0, 0.06), transparent 38%, rgba(77, 229, 255, 0.05));
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  display: grid;
  gap: 14px;
  max-width: 480px;
  padding: 18px 18px 16px;
  background: var(--panel);
  border: 1px solid rgba(195, 215, 255, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 98, 0, 0.06) inset, 0 0 26px rgba(255, 98, 0, 0.08);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
  margin: 6px 0 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-banner .hero-copy {
  padding: 14px 16px 12px;
  background: rgba(20, 28, 60, 0.42);
  border: 1px solid rgba(195, 215, 255, 0.16);
  box-shadow: var(--shadow-soft), 0 0 24px rgba(255, 98, 0, 0.08);
  backdrop-filter: blur(8px);
  justify-self: start;
  margin-left: clamp(0px, 4vw, 60px);
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  filter: drop-shadow(0 10px 22px rgba(255, 98, 0, 0.18)) drop-shadow(0 16px 34px rgba(77, 229, 255, 0.12));
}

.lede {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  max-width: 560px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: rgba(5, 8, 18, 0.92);
  box-shadow: 0 18px 56px rgba(255, 98, 0, 0.18), 0 16px 54px rgba(77, 229, 255, 0.12),
    0 30px 96px rgba(0, 0, 0, 0.46);
}

.btn.ghost {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn.ghost:hover {
  border-color: rgba(255, 98, 0, 0.22);
  background: rgba(255, 98, 0, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 98, 0, 0.12) inset, 0 0 28px rgba(255, 98, 0, 0.12);
}

.btn.primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 22px 72px rgba(255, 98, 0, 0.2), 0 18px 66px rgba(77, 229, 255, 0.14),
    0 32px 110px rgba(0, 0, 0, 0.5);
}

.btn.full {
  width: 100%;
}

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

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

.tag {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(195, 215, 255, 0.18);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  box-shadow: 0 0 0 1px rgba(255, 98, 0, 0.06) inset;
}

.hero-metrics-row {
  grid-column: 2;
  align-self: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  justify-items: stretch;
}

/* Vendor hero split layout */
.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: end;
}

.hero-visual > *:not(.orb) {
  position: relative;
  z-index: 2;
}

.hero-photo {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  background-image:
    linear-gradient(
      160deg,
      rgba(255, 98, 0, 0.14) 0%,
      rgba(77, 229, 255, 0.11) 38%,
      rgba(155, 123, 255, 0.1) 62%,
      rgba(7, 11, 26, 0.78) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(195, 215, 255, 0.18);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 26, 0.6), rgba(7, 11, 26, 0) 44%, rgba(7, 11, 26, 0.74));
}

.orb {
  position: absolute;
  filter: blur(34px);
  opacity: 0.22;
  border-radius: 50%;
  z-index: 1;
}

.orb-1 {
  width: 260px;
  height: 260px;
  top: -6%;
  right: -4%;
  background: radial-gradient(circle, rgba(77, 229, 255, 0.3), transparent 60%);
}

.orb-2 {
  width: 220px;
  height: 220px;
  bottom: -12%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 98, 0, 0.26), transparent 60%);
}

.card {
  position: relative;
  padding: 18px 18px;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(255, 98, 0, 0.08), rgba(77, 229, 255, 0.06) 46%, transparent 72%),
    linear-gradient(160deg, rgba(20, 28, 60, 0.9), rgba(10, 16, 40, 0.76));
  border: 1px solid rgba(195, 215, 255, 0.18);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(234, 240, 255, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 98, 0, 0.75), rgba(77, 229, 255, 0.55), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.card.metrics {
  width: auto;
  min-width: 160px;
  text-align: left;
  background: rgba(20, 28, 60, 0.52);
  border-color: rgba(195, 215, 255, 0.18);
  box-shadow: 0 22px 78px rgba(0, 0, 0, 0.46), 0 0 28px rgba(255, 98, 0, 0.08);
  backdrop-filter: blur(14px);
}

.card.metrics p {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.card.metrics small {
  color: var(--muted);
}

.card.metrics.highlight {
  border-color: rgba(255, 98, 0, 0.32);
  background: linear-gradient(145deg, rgba(255, 98, 0, 0.14), rgba(20, 28, 60, 0.9));
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 98, 0, 0.14) inset,
    0 0 44px rgba(255, 98, 0, 0.12), 0 0 76px rgba(77, 229, 255, 0.1),
    inset 0 1px 0 rgba(242, 246, 255, 0.08);
  border-color: rgba(255, 98, 0, 0.26);
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 8px 0 10px;
}

.section-head h2 {
  position: relative;
}

.section-head h2::after {
  content: "";
  display: block;
  height: 2px;
  width: min(180px, 46%);
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 98, 0, 0.95), rgba(77, 229, 255, 0.7), transparent);
  box-shadow: 0 0 26px rgba(255, 98, 0, 0.16);
  opacity: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  margin: 0;
  text-shadow: 0 0 22px rgba(255, 98, 0, 0.22);
}

.muted {
  color: var(--muted);
}

.vendor-grid,
.service-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.vendor h3,
.service h3,
.solution h3 {
  margin: 8px 0 8px;
  font-size: 1.2rem;
}

.vendor-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.vendor-img {
  height: 140px;
  border-radius: 12px 12px 0 0;
  background-image: var(--vendor-img, linear-gradient(145deg, rgba(255, 98, 0, 0.16), rgba(77, 229, 255, 0.12)));
  background-size: var(--vendor-img-size, cover);
  background-position: var(--vendor-img-pos, center);
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--stroke);
  position: relative;
  filter: saturate(0.92) contrast(1.06) brightness(0.92);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.vendor-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 26, 0.08) 0%, rgba(7, 11, 26, 0.66) 100%);
}

.vendor-link:hover .vendor-img {
  filter: saturate(1.02) contrast(1.08) brightness(0.98);
  transform: scale(1.02);
}

.vendor-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vendor ul {
  padding-left: 18px;
  color: var(--muted);
  margin: 8px 0;
}

.vendor li {
  margin-bottom: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 98, 0, 0.12);
  color: var(--text);
  border-radius: 12px;
  border: 1px solid rgba(255, 98, 0, 0.22);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 1px rgba(255, 98, 0, 0.08) inset, 0 0 16px rgba(255, 98, 0, 0.12);
}

.service,
.solution {
  min-height: 140px;
}

.solution .mini-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mini-list span {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(77, 229, 255, 0.08);
  border: 1px solid rgba(77, 229, 255, 0.18);
  color: var(--text);
  font-size: 0.95rem;
  box-shadow: 0 0 18px rgba(77, 229, 255, 0.1);
}

.process {
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(195, 215, 255, 0.18);
  background: var(--panel);
  box-shadow: var(--shadow-soft), 0 0 32px rgba(255, 98, 0, 0.08);
}

.process-title {
  font-weight: 700;
  margin-bottom: 12px;
  color: rgba(234, 240, 255, 0.86);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 12px;
  background: rgba(20, 28, 60, 0.58);
  border: 1px solid rgba(195, 215, 255, 0.18);
}

.step-id {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 98, 0, 0.26), rgba(77, 229, 255, 0.18));
  color: var(--text);
  font-weight: 800;
}

.step h4 {
  margin: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(20, 28, 60, 0.9), rgba(10, 16, 40, 0.76));
  border: 1px solid rgba(195, 215, 255, 0.18);
  box-shadow: var(--shadow), 0 0 46px rgba(255, 98, 0, 0.1), 0 0 74px rgba(77, 229, 255, 0.06);
}

.contact-copy h2 {
  margin: 8px 0 12px;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 12px 0;
}

.contact-strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

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

.contact-form .hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(242, 246, 255, 0.06);
}

input::placeholder,
textarea::placeholder {
  color: rgba(242, 246, 255, 0.55);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 98, 0, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 98, 0, 0.12), 0 0 28px rgba(77, 229, 255, 0.08);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(195, 215, 255, 0.16);
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.footer .logo {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-card {
  display: grid;
  gap: 12px;
}

.image-card img,
.image-frame {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  object-fit: cover;
  background: var(--panel);
}

.image-frame {
  display: grid;
  place-items: center;
  padding: 30px;
}

.image-caption {
  color: var(--muted);
}

.image-caption h3 {
  margin: 0 0 6px;
  color: var(--text);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.product ul {
  padding-left: 18px;
  margin: 8px 0;
  color: var(--muted);
}

.product img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.vendor-grid .vendor,
.product,
.service {
  height: 100%;
}

.top-link,
.pill.ghost {
  color: var(--text);
}

.pill.ghost:hover {
  border-color: rgba(255, 98, 0, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 900px) {
  .texture {
    animation: none;
    background-image:
      linear-gradient(rgba(242, 246, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(242, 246, 255, 0.045) 1px, transparent 1px);
    background-size: calc(var(--grid-size) * 1.25) calc(var(--grid-size) * 1.25);
    opacity: 0.14;
  }

  .texture::before {
    animation: none;
    opacity: 0.18;
  }

  .nav {
    top: 12px;
    width: calc(100% - 18px);
    max-width: none;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  }

  .nav.is-floating {
    padding: 12px 18px;
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.62), 0 6px 18px rgba(0, 0, 0, 0.25);
  }

  .logo-img {
    height: 40px;
    max-height: 40px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(195, 215, 255, 0.16);
  }

  .nav-cta {
    justify-content: flex-end;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
    margin-left: 10px;
  }

  .lang-switch {
    display: none;
  }

  .nav.menu-open {
    flex-wrap: wrap;
  }

  .nav.menu-open .nav-links {
    display: flex;
  }

  .nav.menu-open .nav-cta {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .nav.menu-open .lang-switch {
    display: inline-flex;
    order: 2;
  }

  .section {
    padding: 56px 0;
  }

  .section-head.inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    padding: 0;
  }

  .hero-surface {
    padding: 20px;
    min-height: 460px;
  }

  .hero-inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-banner .hero-copy {
    margin-left: 0;
  }

  .hero-metrics-row {
    grid-column: 1;
    align-self: stretch;
    margin-top: 14px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 600px) {
  .texture {
    opacity: 0.12;
  }

  .texture::before {
    display: none;
  }

  .hero {
    padding-bottom: 56px;
  }

  .nav {
    gap: 12px;
  }

  .logo-img {
    height: 36px;
    max-height: 36px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn.ghost {
    border-color: var(--stroke);
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

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