:root {
  --bg: #0b1013;
  --bg-deep: #070a0c;
  --bg-soft: #10161a;

  --panel: #11181d;
  --panel-light: #182127;

  --text: #e7f0f4;
  --ice: #d8e7ea;
  --muted: #9eadb4;
  --muted-strong: #c3d0d6;

  --accent: #c7784a;
  --accent-strong: #e09a64;
  --accent-soft: rgba(199, 120, 74, 0.16);

  --line: rgba(216, 231, 234, 0.10);
  --line-copper: rgba(199, 120, 74, 0.34);

  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(228, 169, 73, 0.13), transparent 34rem),
    radial-gradient(circle at top right, rgba(132, 160, 255, 0.08), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 10, 12, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 231, 234, 0.10);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 230px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
}

.main-nav a:hover {
  color: var(--accent-strong);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent);
  transition: transform 0.2s ease;
}

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

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 118px 0 74px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(7, 10, 12, 0.98) 0%,
      rgba(7, 10, 12, 0.94) 26%,
      rgba(7, 10, 12, 0.72) 47%,
      rgba(7, 10, 12, 0.34) 70%,
      rgba(7, 10, 12, 0.16) 100%
    ),
    url("/assets/img/hero-forge-1920.webp") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(199, 120, 74, 0.15), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 22%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 231, 234, 0.22), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero .eyebrow {
  margin-bottom: 22px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  color: var(--ice);
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  text-shadow: 0 0 28px rgba(216, 231, 234, 0.09);
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #d08a59, #a95f39);
  color: #fff6ee;
  box-shadow: 0 18px 42px rgba(199, 120, 74, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(199, 120, 74, 0.34);
}

.btn-secondary {
  color: var(--ice);
  border-color: rgba(216, 231, 234, 0.42);
  background: rgba(7, 10, 12, 0.34);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(199, 120, 74, 0.08);
}

.hero-features {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 840px;
}

.hero-feature {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-width: 0;
  padding: 0 34px;
  border-right: 1px solid rgba(216, 231, 234, 0.18);
  align-items: center;
}

.hero-feature:first-child {
  padding-left: 0;
}

.hero-feature:last-child {
  border-right: 0;
}

.feature-badge {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  filter: drop-shadow(0 0 16px rgba(199, 120, 74, 0.24));
}

.feature-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.08), rgba(7, 10, 12, 0.22)),
    radial-gradient(circle at 50% 68%, rgba(199, 120, 74, 0.22), transparent 58%),
    #0d1216;
  clip-path: polygon(
    25% 5%,
    75% 5%,
    100% 50%,
    75% 95%,
    25% 95%,
    0% 50%
  );
  border: 1px solid transparent;
}

.feature-badge::after {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: polygon(
    25% 5%,
    75% 5%,
    100% 50%,
    75% 95%,
    25% 95%,
    0% 50%
  );
  background:
    linear-gradient(135deg, rgba(199, 120, 74, 0.95), rgba(224, 154, 100, 0.28), rgba(199, 120, 74, 0.82));
  z-index: -1;
}

.feature-badge svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
}

.feature-badge path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ice);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.hero-feature p {
  margin: 0;
  color: rgba(216, 231, 234, 0.72);
  font-size: 16px;
  line-height: 1.35;
}

.hero-feature:hover .feature-badge {
  color: #ffd0a8;
  filter: drop-shadow(0 0 22px rgba(199, 120, 74, 0.42));
}

.hero-feature:hover .feature-badge::before {
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.10), rgba(7, 10, 12, 0.18)),
    radial-gradient(circle at 50% 68%, rgba(199, 120, 74, 0.34), transparent 58%),
    #10171c;
}

.section {
  padding: 84px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  color: var(--ice);
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.section-heading p {
  color: rgba(216, 231, 234, 0.70);
  font-size: 17px;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  min-height: 282px;
  padding: 30px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.055), rgba(216, 231, 234, 0.012)),
    radial-gradient(circle at 86% 18%, rgba(199, 120, 74, 0.13), transparent 14rem),
    var(--panel);
  border: 1px solid rgba(216, 231, 234, 0.105);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0 94%, rgba(199, 120, 74, 0.16) 94% 95%, transparent 95%),
    linear-gradient(0deg, transparent 0 94%, rgba(216, 231, 234, 0.07) 94% 95%, transparent 95%);
  background-size: 34px 34px;
  mask-image: linear-gradient(145deg, transparent 0%, #000 44%, transparent 100%);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199, 120, 74, 0.42);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(199, 120, 74, 0.08);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  filter: drop-shadow(0 0 16px rgba(199, 120, 74, 0.28));
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.08), rgba(7, 10, 12, 0.22)),
    radial-gradient(circle at 50% 68%, rgba(199, 120, 74, 0.22), transparent 58%),
    #0d1216;
  clip-path: polygon(
    25% 5%,
    75% 5%,
    100% 50%,
    75% 95%,
    25% 95%,
    0% 50%
  );
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  clip-path: polygon(
    25% 5%,
    75% 5%,
    100% 50%,
    75% 95%,
    25% 95%,
    0% 50%
  );
  background:
    linear-gradient(135deg, rgba(199, 120, 74, 0.95), rgba(224, 154, 100, 0.24), rgba(199, 120, 74, 0.78));
}

.service-icon svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
}

.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: var(--ice);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(216, 231, 234, 0.72);
  font-size: 15.5px;
  line-height: 1.68;
}

.service-card:hover .service-icon {
  color: #ffd0a8;
  filter: drop-shadow(0 0 24px rgba(199, 120, 74, 0.45));
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 120, 74, 0.10), transparent 34rem),
    linear-gradient(180deg, rgba(216, 231, 234, 0.025), rgba(7, 10, 12, 0.02)),
    var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(216, 231, 234, 0.08) 96% 97%, transparent 97%),
    linear-gradient(0deg, transparent 0 96%, rgba(199, 120, 74, 0.09) 96% 97%, transparent 97%);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.forge-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.forge-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(199, 120, 74, 0.35),
      rgba(216, 231, 234, 0.20),
      rgba(199, 120, 74, 0.35),
      transparent
    );
  box-shadow: 0 0 24px rgba(199, 120, 74, 0.22);
}

.forge-step {
  position: relative;
  min-height: 330px;
  padding: 0 0 0;
}

.forge-step-badge {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  filter: drop-shadow(0 0 20px rgba(199, 120, 74, 0.28));
}

.forge-step-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.10), rgba(7, 10, 12, 0.32)),
    radial-gradient(circle at 50% 66%, rgba(199, 120, 74, 0.24), transparent 58%),
    #0d1216;
  clip-path: polygon(
    25% 5%,
    75% 5%,
    100% 50%,
    75% 95%,
    25% 95%,
    0% 50%
  );
}

.forge-step-badge::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  clip-path: polygon(
    25% 5%,
    75% 5%,
    100% 50%,
    75% 95%,
    25% 95%,
    0% 50%
  );
  background:
    linear-gradient(
      135deg,
      rgba(199, 120, 74, 0.95),
      rgba(224, 154, 100, 0.20),
      rgba(199, 120, 74, 0.78)
    );
}

.forge-step-badge span {
  position: relative;
  z-index: 2;
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.forge-step-body {
  position: relative;
  min-height: 225px;
  padding: 28px 24px 26px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.055), rgba(216, 231, 234, 0.012)),
    radial-gradient(circle at 50% 0%, rgba(199, 120, 74, 0.11), transparent 12rem),
    var(--panel);
  border: 1px solid rgba(216, 231, 234, 0.10);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.forge-step-body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(90deg, transparent 0 94%, rgba(216, 231, 234, 0.07) 94% 95%, transparent 95%),
    linear-gradient(0deg, transparent 0 94%, rgba(199, 120, 74, 0.10) 94% 95%, transparent 95%);
  background-size: 32px 32px;
  mask-image: linear-gradient(150deg, transparent, #000 46%, transparent);
}

.forge-step-body::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.24s ease;
}

.step-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.forge-step h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  color: var(--ice);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 25px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.forge-step p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(216, 231, 234, 0.72);
  font-size: 15.5px;
  line-height: 1.65;
}

.forge-step:hover .forge-step-body {
  transform: translateY(-8px);
  border-color: rgba(199, 120, 74, 0.42);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(199, 120, 74, 0.08);
}

.forge-step:hover .forge-step-body::after {
  transform: scaleX(1);
}

.forge-step:hover .forge-step-badge {
  color: #ffd0a8;
  filter: drop-shadow(0 0 28px rgba(199, 120, 74, 0.46));
}

.focus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 120, 74, 0.11), transparent 30rem),
    radial-gradient(circle at 82% 62%, rgba(216, 231, 234, 0.06), transparent 28rem),
    var(--bg);
}

.focus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(216, 231, 234, 0.07) 96% 97%, transparent 97%),
    linear-gradient(0deg, transparent 0 96%, rgba(199, 120, 74, 0.08) 96% 97%, transparent 97%);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 45% 50%, #000 0%, transparent 72%);
}

.focus-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.focus-console {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.07), rgba(216, 231, 234, 0.015)),
    radial-gradient(circle at 70% 18%, rgba(199, 120, 74, 0.17), transparent 18rem),
    #0d1216;
  border: 1px solid rgba(216, 231, 234, 0.12);
  box-shadow: var(--shadow);
}

.focus-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0 94%, rgba(199, 120, 74, 0.14) 94% 95%, transparent 95%),
    linear-gradient(0deg, transparent 0 94%, rgba(216, 231, 234, 0.06) 94% 95%, transparent 95%);
  background-size: 34px 34px;
  mask-image: linear-gradient(145deg, #000 0%, transparent 82%);
}

.console-header {
  position: relative;
  z-index: 2;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(216, 231, 234, 0.10);
  background: rgba(7, 10, 12, 0.38);
}

.console-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(216, 231, 234, 0.22);
}

.console-header span:first-child {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(199, 120, 74, 0.56);
}

.console-content {
  position: relative;
  z-index: 2;
  padding: 42px;
}

.console-label {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-content h2 {
  margin-bottom: 22px;
  color: var(--ice);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.console-content > p {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(216, 231, 234, 0.74);
  font-size: 17px;
  line-height: 1.72;
}

.console-lines {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 231, 234, 0.10);
}

.console-lines div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(216, 231, 234, 0.07);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.console-lines div:last-child {
  border-bottom: 0;
}

.console-lines span {
  color: rgba(216, 231, 234, 0.42);
  font-size: 13px;
}

.console-lines strong {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.focus-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.055), rgba(216, 231, 234, 0.012)),
    radial-gradient(circle at 88% 14%, rgba(199, 120, 74, 0.12), transparent 13rem),
    var(--panel);
  border: 1px solid rgba(216, 231, 234, 0.10);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.focus-card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(199, 120, 74, 0.18);
  transform: rotate(45deg);
  background: rgba(199, 120, 74, 0.035);
}

.focus-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.24s ease;
}

.focus-card-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent-strong);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.focus-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: var(--ice);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 25px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.focus-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(216, 231, 234, 0.72);
  font-size: 15.5px;
  line-height: 1.65;
}

.focus-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199, 120, 74, 0.42);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(199, 120, 74, 0.08);
}

.focus-card:hover::after {
  transform: scaleX(1);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 120, 74, 0.11), transparent 32rem),
    radial-gradient(circle at 50% 100%, rgba(216, 231, 234, 0.06), transparent 28rem),
    var(--bg-deep);
  border-top: 1px solid var(--line);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(216, 231, 234, 0.07) 96% 97%, transparent 97%),
    linear-gradient(0deg, transparent 0 96%, rgba(199, 120, 74, 0.08) 96% 97%, transparent 97%);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.contact-centered {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.contact-heading {
  margin-bottom: 34px;
}

.contact-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.07), rgba(216, 231, 234, 0.015)),
    radial-gradient(circle at 88% 12%, rgba(199, 120, 74, 0.13), transparent 14rem),
    var(--panel);
  border: 1px solid rgba(216, 231, 234, 0.11);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ice);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 231, 234, 0.13);
  border-radius: 8px;
  padding: 15px 16px;
  background: rgba(7, 10, 12, 0.46);
  color: var(--ice);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(199, 120, 74, 0.72);
  box-shadow: 0 0 0 3px rgba(199, 120, 74, 0.12);
  background: rgba(7, 10, 12, 0.64);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.hidden-field {
  display: none;
}

.form-note {
  margin: 0;
  color: rgba(216, 231, 234, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.form-note a {
  color: var(--accent-strong);
}

.centered-direct {
  max-width: 720px;
  margin: 22px auto 0;
  text-align: center;
}

@media (max-width: 620px) {
  .contact-form {
    padding: 24px;
  }
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(216, 231, 234, 0.025), rgba(7, 10, 12, 0.2)),
    var(--bg-deep);
  color: rgba(216, 231, 234, 0.68);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-copy p,
.footer-legal p {
  margin: 0;
}

.footer-copy {
  font-size: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(216, 231, 234, 0.58);
}

.footer-legal strong {
  color: var(--accent-strong);
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--accent-strong);
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #ffd0a8;
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
  z-index: 100;
}

.popup.active {
  display: grid;
}

.popup-box {
  width: min(430px, 100%);
  position: relative;
  padding: 32px;
  border-radius: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.popup-box p {
  margin-bottom: 0;
  color: var(--muted);
}

.popup-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
}

.privacy-card {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(216, 231, 234, 0.07), rgba(216, 231, 234, 0.015)),
    radial-gradient(circle at 88% 12%, rgba(199, 120, 74, 0.13), transparent 14rem),
    var(--panel);
  border: 1px solid rgba(216, 231, 234, 0.11);
  box-shadow: var(--shadow);
}

.privacy-card h1,
.privacy-card h2 {
  font-family: "Rajdhani", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  color: var(--ice);
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.privacy-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 26px;
}

.privacy-card p,
.privacy-card li {
  color: rgba(216, 231, 234, 0.74);
}

.privacy-card a {
  color: var(--accent-strong);
}

.privacy-card ul {
  margin-top: 10px;
}

@media (max-width: 620px) {
  .privacy-card {
    padding: 26px 22px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

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

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

  .service-card {
    min-height: auto;
  }

  .focus-points {
    grid-template-columns: 1fr;
  }
  
    .hero {
      min-height: auto;
      padding: 96px 0 62px;
      background:
        linear-gradient(
          180deg,
          rgba(7, 10, 12, 0.88) 0%,
          rgba(7, 10, 12, 0.84) 34%,
          rgba(7, 10, 12, 0.96) 100%
        ),
        url("/assets/img/hero-forge-mobile.webp") center top / cover no-repeat;
    }
  
    .hero-content {
      max-width: 100%;
    }
  
    .hero h1 {
      font-size: clamp(44px, 13vw, 68px);
    }
  
    .hero-text {
      font-size: 16px;
    }
  
    .hero-features {
      display: grid;
      gap: 18px;
    }
  
    .hero-feature {
      padding: 0;
      border-right: 0;
    }
  }
  
  .section {
    padding: 62px 0;
  }

@media (max-width: 540px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .signal-grid {
    width: 170px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .forge-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .forge-timeline::before {
    display: none;
  }

  .forge-step {
    min-height: auto;
  }

  .forge-step-badge {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .forge-timeline {
    grid-template-columns: 1fr;
  }

  .forge-step {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: start;
  }

  .forge-step-badge {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .forge-step-badge span {
    font-size: 22px;
  }

  .forge-step-body {
    min-height: auto;
    padding: 24px 22px;
  }
}

@media (max-width: 980px) {
  .focus-layout {
    grid-template-columns: 1fr;
  }

  .focus-console {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .focus-cards {
    grid-template-columns: 1fr;
  }

  .console-content {
    padding: 30px 24px;
  }

  .console-lines div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .focus-card {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-legal {
    gap: 6px 14px;
  }
}