:root {
  --navy-950: #030712;
  --navy-900: #061126;
  --navy-850: #08172f;
  --navy-800: #0b1d3c;
  --orange-500: #ff2a0a;
  --orange-400: #ff6a2a;
  --orange-300: #ff9a64;
  --white: #ffffff;
  --text: #f7fbff;
  --muted: #aeb8c8;
  --dim: #748097;
  --line: rgba(255, 255, 255, .13);
  --line-hot: rgba(255, 42, 10, .42);
  --glass: rgba(9, 22, 45, .72);
  --glass-strong: rgba(8, 18, 36, .88);
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --glow: 0 0 28px rgba(255, 42, 10, .34), 0 0 64px rgba(255, 106, 42, .14);
  --gradient: linear-gradient(135deg, #ffffff 0%, var(--orange-300) 34%, var(--orange-500) 100%);
  --radius: 22px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 42, 10, .17), transparent 32rem),
    radial-gradient(circle at 95% 18%, rgba(255, 106, 42, .13), transparent 38rem),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 45%, #040913 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  text-rendering: geometricPrecision;
}

body::selection {
  color: var(--white);
  background: var(--orange-500);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.mono,
pre,
small {
  font-family: "JetBrains Mono", Consolas, monospace;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.page-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255,42,10,.2), transparent 24rem),
    radial-gradient(circle at 82% 64%, rgba(255,106,42,.12), transparent 28rem);
  filter: blur(10px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 74px;
  border-bottom: 1px solid rgba(6, 17, 38, .12);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  transition: box-shadow .24s ease, background .24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: 252px;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a,
.mobile-menu a {
  position: relative;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .26s ease;
}

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

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

.language {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(6, 17, 38, .12);
  border-radius: 999px;
  background: #f1f4f8;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 5px 13px;
  color: #5f6474;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

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

.lang-btn.active {
  color: var(--white);
  background: var(--orange-500);
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(255, 42, 10, .28);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 42, 10, .28);
  transition: transform .24s ease, box-shadow .24s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(6, 17, 38, .12);
  border-radius: 12px;
  color: var(--navy-900);
  background: rgba(6, 17, 38, .04);
}

.menu-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-menu {
  padding: 6px 20px 18px;
  border-top: 1px solid rgba(6,17,38,.1);
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.mobile-menu a {
  display: block;
  padding: 11px 0;
}

.mobile-menu .language {
  width: fit-content;
  margin-top: 8px;
}

.section-tech,
.section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  padding: 136px 0 88px;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 42, 10, .2), transparent 26rem),
    radial-gradient(circle at 82% 20%, rgba(255, 106, 42, .14), transparent 34rem),
    linear-gradient(135deg, rgba(3,7,18,.98) 0%, rgba(6,17,38,.96) 48%, rgba(22, 8, 10, .98) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 104px max(24px, 5vw) 48px;
  border: 1px solid rgba(255, 42, 10, .22);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255,42,10,.35), transparent 26%, transparent 74%, rgba(255,42,10,.35)) top / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.14), transparent 18%, transparent 82%, rgba(255,255,255,.12)) bottom / 100% 1px no-repeat;
  box-shadow: inset 0 0 80px rgba(255, 42, 10, .045);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 45%, rgba(255,42,10,.1) 45% 45.18%, transparent 45.18% 100%),
    linear-gradient(66deg, transparent 0 64%, rgba(255,255,255,.075) 64% 64.16%, transparent 64.16% 100%);
  pointer-events: none;
}

#network,
.digital-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#network {
  z-index: 0;
  opacity: .86;
}

.digital-grid {
  z-index: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,42,10,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 38%, black 0%, transparent 74%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.hero-copy-block {
  max-width: 670px;
}

.eyebrow,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,42,10,.36);
  border-radius: 999px;
  background: rgba(6,17,38,.68);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}

.eyebrow {
  padding: 8px 16px;
}

.eyebrow span,
.section-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 18px rgba(255,42,10,.88);
}

.eyebrow strong,
.section-badge b {
  color: #e3e9f4;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 28px 0 20px;
  font-size: clamp(42px, 6.8vw, 82px);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.gradient-text {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 12px;
  color: #d9e1ee;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.stack {
  margin: 0 0 34px;
  color: #ffb49e;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  overflow: hidden;
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease, background .26s ease;
}

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

.button:hover::before {
  transform: translateX(110%);
}

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

.button.primary {
  color: var(--white);
  border-color: rgba(255,42,10,.7);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 16px 36px rgba(255,42,10,.26);
}

.button.primary:hover {
  box-shadow: var(--glow);
}

.button.secondary {
  color: var(--white);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
}

.button.secondary:hover {
  border-color: rgba(255,42,10,.55);
  box-shadow: 0 0 28px rgba(255,42,10,.14);
}

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

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #cbd5e5;
  background: rgba(255,255,255,.055);
  font-size: 12px;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: center;
  isolation: isolate;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 40px 16px 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,42,10,.22), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,42,10,.06);
  backdrop-filter: blur(18px);
  z-index: -1;
}

.logo-orbit {
  position: relative;
  width: min(330px, 72vw);
  aspect-ratio: 1;
  margin: 0 auto -34px;
  display: grid;
  place-items: center;
}

.logo-orbit img {
  width: 66%;
  height: 66%;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.42));
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,42,10,.26);
  border-radius: 50%;
  background:
    conic-gradient(from 22deg, transparent, rgba(255,42,10,.62), transparent 38%, rgba(255,255,255,.32), transparent 68%, rgba(255,106,42,.45), transparent);
  mask: radial-gradient(circle, transparent 59%, black 60%, black 61%, transparent 62%);
  animation: orbitSpin 14s linear infinite;
}

.code-card {
  width: min(540px, 100%);
  margin: 0 auto;
  padding: 20px 22px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(2, 8, 18, .88);
  box-shadow: 0 28px 80px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,42,10,.07);
  backdrop-filter: blur(18px);
}

.window-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.window-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 14px rgba(255,42,10,.56);
}

.window-dots i:nth-child(2) { background: var(--white); box-shadow: 0 0 14px rgba(255,255,255,.34); }
.window-dots i:nth-child(3) { background: var(--orange-400); }

.code-card pre {
  margin: 0;
  color: #dbe5f4;
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.code-purple { color: var(--white); }
.code-pink { color: var(--orange-400); }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: min(420px, 92%);
  margin: 18px auto 0;
}

.hero-metrics span {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(16px);
}

.hero-metrics strong,
.stat-card strong {
  display: block;
  color: var(--orange-400);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255,42,10,.24);
}

.hero-metrics small,
.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,42,10,.12), transparent 28rem),
    radial-gradient(circle at 94% 16%, rgba(255,106,42,.09), transparent 32rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.portfolio-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,106,42,.11), transparent 30rem),
    radial-gradient(circle at 88% 74%, rgba(255,42,10,.08), transparent 30rem),
    linear-gradient(180deg, #050b16, #070f20);
}

.traffic-section {
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    radial-gradient(circle at 50% 14%, rgba(255,42,10,.11), transparent 28rem),
    linear-gradient(180deg, #070f20, #061126);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.section-bordered {
  border-top: 1px solid rgba(255,255,255,.1);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-badge {
  padding: 6px 12px;
}

.section-badge span {
  width: 6px;
  height: 6px;
}

.section-badge b {
  color: var(--orange-400);
  font-size: 10px;
}

.section-heading h2 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -.055em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.card,
.portfolio-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.028)),
    var(--glass);
  box-shadow: 0 22px 70px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,42,10,.04);
  backdrop-filter: blur(16px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.card:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,42,10,.46);
  box-shadow: 0 24px 80px rgba(0,0,0,.34), 0 0 36px rgba(255,42,10,.12);
}

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

.service-card {
  min-height: 232px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  background:
    linear-gradient(90deg, transparent, rgba(255,42,10,.44)) top right / 54px 1px no-repeat,
    linear-gradient(180deg, rgba(255,42,10,.44), transparent) top right / 1px 54px no-repeat;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,42,10,.98), rgba(255,122,47,.62));
  box-shadow: 0 0 34px rgba(255,42,10,.24);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-card {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px;
  border-radius: 18px;
}

.portfolio-card span {
  min-width: 0;
}

.portfolio-card b,
.portfolio-card small {
  display: block;
}

.portfolio-card b {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
}

.portfolio-card small {
  overflow: hidden;
  color: #94a1b8;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-card i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-left: 10px;
  border-radius: 50%;
  color: var(--orange-300);
  background: rgba(255,42,10,.08);
  font-style: normal;
  transition: color .24s ease, background .24s ease, transform .24s ease;
}

.portfolio-card:hover i {
  color: var(--white);
  background: var(--orange-500);
  transform: rotate(12deg);
}

.portfolio-card-featured {
  min-height: 108px;
  border-color: rgba(255, 80, 42, .58);
  background:
    radial-gradient(circle at 90% 0, rgba(255, 86, 46, .2), transparent 48%),
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,42,10,.05)),
    var(--glass);
  box-shadow: 0 25px 75px rgba(0,0,0,.32), 0 0 0 1px rgba(255,42,10,.09) inset;
}

.portfolio-card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.07) 50%, transparent 72%);
}

.portfolio-demo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-bottom: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 126, 89, .55);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff2a0a, #ff7142);
  box-shadow: 0 7px 18px rgba(255,42,10,.24);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .13em;
}

.portfolio-card-featured b { font-size: 16px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 46px;
}

.stat-card {
  padding: 28px 18px;
  border-radius: 20px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,42,10,.22), transparent 72%),
    var(--glass);
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.chart-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 22px;
}

.chart-card h3 {
  margin: 0 0 24px;
  color: #dce6f5;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.bar-chart {
  height: 132px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.bar-chart i {
  flex: 1;
  min-width: 5px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--orange-300), rgba(255,42,10,.28));
  box-shadow: 0 0 18px rgba(255,42,10,.18);
  transform-origin: bottom;
}

.line-chart {
  width: 100%;
  height: 132px;
  filter: drop-shadow(0 0 14px rgba(255,42,10,.18));
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #8e9ab1;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 10px;
}

.funnel {
  display: grid;
  gap: 14px;
}

.funnel p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
}

.funnel p b {
  font-family: "JetBrains Mono", Consolas, monospace;
}

.funnel > div > i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.funnel em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  box-shadow: 0 0 18px rgba(255,42,10,.26);
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 8% 24%, rgba(255,42,10,.14), transparent 26rem),
    linear-gradient(135deg, #180508, #061126 54%, #030712);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: 54px;
  padding-top: 74px;
  padding-bottom: 70px;
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0,0,0,.3);
}

.footer-grid p,
.footer-grid li,
.footer-grid address,
.footer-grid address a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-grid p {
  max-width: 390px;
  margin: 0 0 22px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a {
  transition: color .22s ease;
}

.footer-grid a:hover {
  color: var(--orange-300);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.06);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,42,10,.45);
  background: rgba(255,42,10,.14);
}

.footer-grid address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.whatsapp {
  margin-top: 18px;
  min-height: 42px;
  padding: 9px 22px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.footer-bottom .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #9ca7bb;
  font-size: 12px;
}

.contact-widget {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
}

.contact-button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
  box-shadow: 0 16px 38px rgba(255,42,10,.34);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
}

.contact-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--glow);
}

.contact-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-panel {
  width: 296px;
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(8,20,38,.94);
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
}

.contact-panel strong {
  display: block;
  margin-bottom: 7px;
}

.contact-panel p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-panel a {
  display: inline-flex;
  margin-right: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,42,10,.92);
  font-size: 12px;
  font-weight: 800;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

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

.js-enabled .delay-1 {
  transition-delay: .12s;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .brand img { width: 220px; }
  .desktop-nav { gap: 22px; }
  .header-cta { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy-block {
    max-width: 780px;
    text-align: center;
    margin-inline: auto;
  }
  .hero-copy {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-chips {
    justify-content: center;
  }
  .hero-showcase {
    min-height: 500px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(100% - 30px, 1200px); }
  .site-header { min-height: 68px; }
  .nav-wrap { height: 68px; }
  .brand img { width: 188px; height: 48px; }
  .desktop-nav,
  .desktop-language {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .menu-button {
    display: grid;
    place-items: center;
  }
  .hero {
    padding-top: 112px;
  }
  .hero::before {
    inset: 84px 15px 32px;
    border-radius: 24px;
  }
  .hero h1 {
    font-size: clamp(38px, 11vw, 64px);
  }
  .service-grid,
  .charts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .charts-grid .chart-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1200px); }
  .brand img { width: 166px; height: 44px; }
  .hero {
    min-height: auto;
    padding: 104px 0 68px;
  }
  .hero-grid {
    gap: 34px;
  }
  .eyebrow strong,
  .section-badge b {
    font-size: 9px;
    letter-spacing: .11em;
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
  }
  .hero-chips span {
    flex: 1 1 100%;
    justify-content: center;
  }
  .hero-showcase {
    min-height: 430px;
  }
  .hero-showcase::before {
    inset: 28px 0 10px;
    border-radius: 24px;
  }
  .logo-orbit {
    width: min(250px, 78vw);
    margin-bottom: -28px;
  }
  .code-card {
    padding: 16px;
  }
  .code-card pre {
    font-size: 11px;
  }
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .section-heading h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .service-grid,
  .portfolio-grid,
  .charts-grid {
    grid-template-columns: 1fr;
  }
  .charts-grid .chart-card:last-child {
    grid-column: auto;
  }
  .stats-grid {
    gap: 12px;
  }
  .service-card,
  .chart-card {
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 58px;
    padding-bottom: 54px;
  }
  .footer-logo {
    width: 208px;
  }
  .footer-bottom .container {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
  .contact-widget {
    right: 14px;
    bottom: 14px;
  }
  .contact-panel {
    width: min(296px, calc(100vw - 28px));
  }
}
