:root {
  --deep: #030712;
  --night: #071426;
  --navy: #0b1630;
  --blue: #1e7bff;
  --orange: #ff6a00;
  --amber: #ffb000;
  --warm: #fff7ec;
  --paper: #faf4ea;
  --white: #ffffff;
  --soft-text: #c9d3e3;
  --text: #101827;
  --muted: #5b6678;
  --line: rgba(16, 24, 39, 0.12);
  --light-line: rgba(255, 255, 255, 0.16);
  --max: 1180px;
  --shadow: 0 22px 55px rgba(11, 22, 48, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.09), transparent 24%, rgba(30, 123, 255, 0.08)),
    rgba(3, 7, 18, 0.94);
  border-bottom: 1px solid rgba(255, 176, 0, 0.18);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo {
  width: 452px;
  max-width: 47vw;
  filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.18));
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #f6f8fc;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--amber);
  border-color: var(--orange);
}

.lang {
  display: flex;
  gap: 4px;
  color: var(--soft-text);
  font-size: 0.76rem;
  font-weight: 900;
  border: 1px solid rgba(201, 211, 227, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
}

.lang a {
  min-width: 32px;
  padding: 5px 7px;
  border-radius: 999px;
  text-align: center;
}

.lang a:hover,
.lang a:focus-visible {
  color: var(--white);
}

.lang a.active {
  color: var(--deep);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.36);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 176, 0, 0.2), transparent 22%),
    radial-gradient(circle at 84% 64%, rgba(30, 123, 255, 0.16), transparent 28%),
    radial-gradient(circle at 14% 10%, rgba(255, 106, 0, 0.15), transparent 24%),
    linear-gradient(180deg, var(--deep) 0%, var(--night) 54%, var(--deep) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 176, 0, 0.34) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-position: 70% 26%, center;
  background-size: 28px 28px, 76px 76px, 76px 76px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 92%);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 92%);
  opacity: 0.42;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(255, 106, 0, 0.16), transparent 34%),
    linear-gradient(118deg, transparent 0 54%, rgba(255, 176, 0, 0.1) 54.2%, transparent 56%),
    linear-gradient(33deg, transparent 0 61%, rgba(30, 123, 255, 0.12) 61.2%, transparent 63%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.hero-content,
.hero-focus-card,
.two-column > *,
.service-card {
  min-width: 0;
}

.eyebrow,
.section-label,
.panel-kicker {
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 13px;
}

.hero .eyebrow {
  color: var(--amber);
  margin-bottom: 10px;
  font-size: 0.75rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 11px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 0;
  color: #e3e8f4;
  font-size: 0.95rem;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 21px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.btn.primary {
  color: var(--deep);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 0 25px rgba(255, 106, 0, 0.46),
    0 15px 34px rgba(255, 106, 0, 0.2);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(201, 211, 227, 0.48);
  box-shadow: inset 0 0 22px rgba(30, 123, 255, 0.08), 0 0 22px rgba(30, 123, 255, 0.18);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 32px rgba(255, 106, 0, 0.56),
    0 18px 38px rgba(255, 106, 0, 0.24);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  color: var(--amber);
  border-color: rgba(255, 176, 0, 0.62);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 0 24px rgba(30, 123, 255, 0.12),
    0 0 24px rgba(30, 123, 255, 0.22);
}

.hero-focus-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 123, 255, 0.68);
  border-radius: 8px;
  padding: 24px;
  background:
    radial-gradient(circle, rgba(255, 176, 0, 0.09) 0 1px, transparent 1.5px) center / 32px 32px,
    linear-gradient(112deg, transparent 0 48%, rgba(255, 106, 0, 0.04) 48.4%, transparent 50.2%),
    linear-gradient(30deg, transparent 0 58%, rgba(30, 123, 255, 0.04) 58.4%, transparent 60.1%),
    radial-gradient(circle at 18% 18%, rgba(255, 176, 0, 0.18), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(30, 123, 255, 0.2), transparent 26%),
    linear-gradient(145deg, rgba(11, 22, 48, 0.92), rgba(3, 7, 18, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.18),
    0 0 34px rgba(30, 123, 255, 0.18),
    0 26px 75px rgba(0, 0, 0, 0.35);
}

.hero-focus-card::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  width: 1px;
  z-index: 4;
  background: rgba(255, 106, 0, 0.38);
  pointer-events: none;
}

.focus-mark {
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 1;
  width: 50px;
  opacity: 0.22;
  filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.46));
}

.focus-card-content {
  position: relative;
  z-index: 1;
}

.hero-focus-card h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  line-height: 1.13;
}

.focus-subtitle {
  margin-bottom: 14px;
  color: var(--soft-text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.focus-panel-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-panel-list li {
  position: relative;
  display: block;
  padding-left: 21px;
  color: #eef3fb;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.33;
  white-space: normal;
}

.focus-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.7);
}

.feature-strip {
  position: relative;
  z-index: 2;
  overflow: visible;
  color: var(--white);
  background: linear-gradient(180deg, var(--deep), #050b17 72%, #07101f);
  border-top: 1px solid rgba(255, 176, 0, 0.16);
  border-bottom: 0;
  box-shadow: 0 22px 42px rgba(3, 7, 18, 0.3);
}

.feature-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 30px;
  background: linear-gradient(180deg, rgba(7, 16, 31, 0.94), rgba(255, 247, 236, 0.96));
  pointer-events: none;
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: -2px;
  border: 1px solid rgba(30, 123, 255, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent 46%, rgba(30, 123, 255, 0.1)),
    rgba(7, 20, 38, 0.88);
  box-shadow:
    0 0 24px rgba(30, 123, 255, 0.18),
    0 0 20px rgba(255, 106, 0, 0.12),
    inset 0 -1px 0 rgba(255, 176, 0, 0.12);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  min-width: 0;
  padding: 18px 19px;
  border-right: 1px solid rgba(201, 211, 227, 0.16);
}

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

.feature-item svg,
.card-icon,
.contact-icon {
  flex: 0 0 auto;
  color: var(--orange);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.44));
}

.feature-item span {
  min-width: 0;
  color: #f7f9fd;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.section {
  padding: 76px 0;
  background: var(--warm);
}

.soft-bg {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 176, 0, 0.1), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(30, 123, 255, 0.08), transparent 25%),
    var(--paper);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.about-copy {
  position: relative;
  padding-left: 0;
}

.two-column p,
.section-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-copy p:last-child,
.two-column p:last-child {
  margin-bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

#services.section {
  padding-top: 58px;
  padding-bottom: 68px;
}

#services .cards {
  gap: 16px;
  margin-top: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  border: 1px solid rgba(11, 22, 48, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 26px;
  box-shadow: var(--shadow);
}

#services .service-card {
  min-height: 204px;
  padding: 22px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--amber) 48%, var(--blue));
}

.card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  color: var(--orange);
}

#services .card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}

#services .service-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.96rem;
}

#services .service-card p {
  font-size: 0.94rem;
  line-height: 1.52;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-list li {
  position: relative;
  padding-left: 22px;
  color: #253049;
  font-weight: 700;
}

.industry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.38);
}

.why-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
  border: 1px solid rgba(30, 123, 255, 0.52);
  border-radius: 8px;
  padding: 38px 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 11% 38%, rgba(255, 106, 0, 0.2), transparent 22%),
    radial-gradient(circle at 90% 78%, rgba(30, 123, 255, 0.2), transparent 24%),
    linear-gradient(135deg, var(--deep), var(--night) 64%, #050b17);
  box-shadow: 0 24px 70px rgba(3, 7, 18, 0.24);
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 176, 0, 0.28) 0 1px, transparent 1.6px);
  background-size: 34px 34px;
  opacity: 0.16;
  pointer-events: none;
}

.why-left,
.why-text {
  position: relative;
  z-index: 1;
}

.why-left {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.why-visual {
  position: relative;
  width: 104px;
  aspect-ratio: 1;
  border: 1px solid rgba(30, 123, 255, 0.56);
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 42%, rgba(30, 123, 255, 0.58), transparent 16%),
    radial-gradient(circle at 68% 70%, rgba(255, 176, 0, 0.55), transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.28), transparent 44%),
    #06101f;
  box-shadow: 0 0 28px rgba(30, 123, 255, 0.2), 0 0 24px rgba(255, 106, 0, 0.2);
}

.why-visual::before,
.why-visual::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 176, 0, 0.68);
  border-radius: 999px;
  transform: rotate(24deg) scaleX(0.58);
}

.why-visual::after {
  border-color: rgba(30, 123, 255, 0.68);
  transform: rotate(-34deg) scaleX(0.64);
}

.why-card .section-label,
.contact-section .section-label {
  color: var(--amber);
}

.why-card h2 {
  margin-bottom: 0;
  color: var(--white);
}

.why-text p {
  color: #e6edf8;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0 62px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 176, 0, 0.19), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(30, 123, 255, 0.16), transparent 26%),
    linear-gradient(180deg, var(--deep), var(--night));
  border-top: 1px solid rgba(255, 176, 0, 0.2);
}

@media (min-width: 701px) {
  .contact-section {
    min-height: calc(100vh - 112px);
  }
}

@media (max-width: 700px) {
  .contact-section {
    min-height: calc(100vh - 18px);
  }
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 176, 0, 0.34) 0 1px, transparent 1.5px),
    linear-gradient(119deg, transparent 0 58%, rgba(255, 106, 0, 0.12) 58.3%, transparent 60%),
    linear-gradient(31deg, transparent 0 66%, rgba(30, 123, 255, 0.12) 66.3%, transparent 68%);
  background-size: 30px 30px, 100% 100%, 100% 100%;
  opacity: 0.25;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 42%, #000 100%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(380px, 1fr);
  gap: 52px;
  align-items: start;
}

.contact-copy {
  max-width: 470px;
}

.contact-section h2 {
  color: var(--white);
  margin-bottom: 0;
  max-width: 420px;
}

.contact-intro {
  max-width: 430px;
  margin: 15px 0 0;
  color: #dbe4f2;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-details {
  justify-self: start;
  display: grid;
  gap: 18px;
  color: #e5ebf6;
  width: min(100%, 560px);
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-icon {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  color: var(--amber);
}

.email-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--soft-text);
  font-weight: 800;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  max-width: 100%;
  border: 1px solid rgba(255, 176, 0, 0.48);
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--amber);
  padding: 8px 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.14);
}

.phone-link {
  min-height: 38px;
  font-weight: 800;
  box-shadow: none;
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hidden input {
  position: absolute;
  left: -9999px;
}

.contact-form-card {
  display: grid;
  gap: 16px;
  margin-top: 6px;
  border: 1px solid rgba(30, 123, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.08), transparent 34%, rgba(30, 123, 255, 0.1)),
    rgba(3, 7, 18, 0.62);
  padding: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--soft-text);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(201, 211, 227, 0.22);
  border-radius: 8px;
  background: rgba(2, 6, 17, 0.72);
  color: var(--white);
  font: inherit;
  font-size: 0.94rem;
  outline: none;
  padding: 11px 12px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.form-field input {
  min-height: 43px;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 176, 0, 0.68);
  background: rgba(2, 6, 17, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-actions p {
  margin: 0;
  color: #dbe4f2;
  font-size: 0.92rem;
}

.contact-privacy-note {
  margin: -4px 0 0;
  max-width: 680px;
  color: rgba(219, 228, 242, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-privacy-note a {
  color: rgba(219, 228, 242, 0.88);
  text-underline-offset: 3px;
}

.contact-submit {
  cursor: pointer;
}

.site-footer {
  color: var(--soft-text);
  background: #020611;
  border-top: 1px solid rgba(201, 211, 227, 0.12);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--amber);
}

.legal-page {
  min-height: 100vh;
  padding: 72px 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(30, 123, 255, 0.09), transparent 26%),
    var(--warm);
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card a {
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 14px 0;
    gap: 12px;
  }

  .logo {
    width: 382px;
    max-width: 82vw;
  }

  .nav-wrap {
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 18px;
    width: 100%;
    white-space: normal;
  }

  .hero-grid,
  .two-column,
  .contact-grid,
  .why-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

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

@media (max-width: 1160px) and (min-width: 981px) {
  .feature-item {
    gap: 10px;
    padding: 16px 12px;
  }

  .feature-item svg {
    width: 28px;
    height: 28px;
  }

  .feature-item span {
    font-size: 0.7rem;
  }
}

@media (max-width: 980px) {
  .feature-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-item:nth-child(2n) {
    border-right: 0;
  }

  .feature-item:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(201, 211, 227, 0.16);
  }
}

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

  .site-header {
    position: relative;
  }

  .logo {
    width: 320px;
    max-width: 100%;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 8px 14px;
    font-size: 0.84rem;
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: 1.82rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .eyebrow,
  .hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero {
    padding: 34px 0 28px;
  }

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

  .hero-content,
  .hero-focus-card {
    width: 100%;
    max-width: 362px;
  }

  .hero-focus-card,
  .service-card,
  .why-card,
  .legal-card {
    padding: 22px;
  }

  .focus-mark {
    width: 48px;
    right: 18px;
    top: 24px;
  }

  .feature-strip-inner,
  .cards,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(2n),
  .feature-item:last-child {
    border-right: 0;
    border-top: 1px solid rgba(201, 211, 227, 0.14);
  }

  .feature-item:first-child {
    border-top: 0;
  }

  .section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-form-card {
    padding: 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    gap: 12px;
  }

  .why-left {
    grid-template-columns: 1fr;
  }

  .why-visual {
    width: 86px;
  }

  .btn {
    width: 100%;
  }

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