:root {
  --bg: #f4f6fb;
  --bg-deep: #e3eaf5;
  --panel: rgba(255,255,255,0.96);
  --panel-strong: #ffffff;
  --line: rgba(16, 23, 45, 0.1);
  --line-strong: rgba(16, 23, 45, 0.16);
  --text: #10172b;
  --muted: #5f6d89;
  --primary: #bf0300;
  --primary-dark: #8f0200;
  --primary-soft: rgba(191, 3, 0, 0.1);
  --shadow: 0 18px 44px rgba(18, 24, 45, 0.08);
  --shadow-strong: 0 20px 56px rgba(18, 24, 45, 0.14);
  --radius: 24px;
  --container: 1180px;
}

html {
  font-feature-settings: "liga" 1, "kern" 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Mulish", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(191,3,0,0.05), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, #edf2f9 100%);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(18,24,45,0.04);
  margin-bottom: -6px;
}

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

.brand-wrap { display: inline-flex; align-items: center; }
.brand-logo { display: block; height: 44px; width: auto; }

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
  font-size: 0.96rem;
}

.nav a:hover { color: var(--text); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 34px;
  min-height: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-surface,
.hero-grid-lines {
  position: absolute;
  inset: 0 24px 0 24px;
  border-radius: 36px;
}

.hero-surface {
  background:
    radial-gradient(circle at top right, rgba(191,3,0,0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,243,251,0.88));
  border: 1px solid rgba(16,23,45,0.08);
  box-shadow: 0 24px 64px rgba(18,24,45,0.1);
}

.hero-grid-lines {
  background-image:
    linear-gradient(rgba(18,24,45,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,24,45,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.35;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  right: 10%;
  top: 46px;
  background: rgba(191,3,0,0.16);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  left: 5%;
  bottom: 16px;
  background: rgba(90,115,143,0.1);
}

.premium-hero {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.38));
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.04), transparent 42%, rgba(191,3,0,0.02) 100%);
  pointer-events: none;
}

.hero-grid,
.two-col,
.contact-card,
.showcase-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.two-col {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

#advantage .two-col,
.process-section .two-col,
.contact-card {
  grid-template-columns: 1fr;
}

#advantage .two-col > div:first-child,
.process-section .two-col > div:first-child,
.contact-card > div:first-child {
  grid-column: 1 / -1;
}

#advantage .advantage-list,
.process-section .process-flow,
.contact-card .contact-form {
  grid-column: 1 / -1;
}

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

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.hero-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.hero-v3-main,
.hero-v3-proof,
.hero-v3-list,
.hero-v3-band-item,
.hero-v3-list-item {
  border-radius: 26px;
  border: 1px solid rgba(16,23,45,0.08);
  box-shadow: 0 18px 42px rgba(18,24,45,0.08);
}

.hero-v3-main,
.hero-v3-proof,
.hero-v3-list {
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(245,248,253,0.95));
}

.hero-v3-main {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 20px 20px 16px;
}

.hero-v3-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #41506e;
}

.hero-v3-kicker-small {
  font-size: 0.74rem;
}

.hero-v3-lead {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.66;
}

.hero-v3-actions {
  margin-top: 4px;
}

.hero-v3-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.hero-v3-band-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.86);
}

.hero-v3-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.hero-v3-proof {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px;
}

.hero-v3-proof h2 {
  margin: 0;
  max-width: 13ch;
  line-height: 1.06;
}

.hero-v3-proof p {
  margin: 0;
  color: var(--muted);
}

.hero-v3-list {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.hero-v3-list-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(249,251,255,0.96));
  box-shadow: 0 8px 18px rgba(18,24,45,0.04);
}

.hero-v3-band-item strong,
.hero-v3-list-item strong {
  color: var(--text);
}

.hero-v3-band-item span,
.hero-v3-list-item span {
  color: var(--muted);
}

.hero-b {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.hero-b-main,
.hero-b-proof,
.hero-b-tile {
  border-radius: 24px;
  border: 1px solid rgba(16,23,45,0.08);
  box-shadow: 0 18px 42px rgba(18,24,45,0.08);
}

.hero-b-main,
.hero-b-proof {
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(245,248,253,0.95));
}

.hero-b-main {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.hero-b-kicker,
.hero-c-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #41506e;
}

.hero-b-kicker-small,
.hero-c-kicker-small {
  font-size: 0.74rem;
}

.hero-b-lead,
.hero-c-lead {
  margin: 0;
  color: var(--muted);
}

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

.hero-b-tile {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.86);
}

.hero-b-side {
  display: grid;
}

.hero-b-proof {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.hero-b-proof h2,
.hero-c-builtfor h2 {
  margin: 0;
  line-height: 1.08;
}

.hero-b-proof p,
.hero-c-builtfor p {
  margin: 0;
  color: var(--muted);
}

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

.hero-c-main,
.hero-c-builtfor,
.hero-c-benefits,
.hero-c-benefit,
.hero-c-summary {
  border-radius: 24px;
  border: 1px solid rgba(16,23,45,0.08);
  box-shadow: 0 18px 42px rgba(18,24,45,0.08);
}

.hero-c-main,
.hero-c-builtfor,
.hero-c-benefits {
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(245,248,253,0.95));
}

.hero-c-main {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.hero-c-summary {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.86);
}

.hero-c-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.hero-c-builtfor {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.hero-c-benefits {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.hero-c-benefit {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 18px rgba(18,24,45,0.04);
}

.hero-b-tile span,
.hero-c-summary span,
.hero-c-benefit span {
  color: var(--muted);
}

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

.hero-v6-main {
  display: grid;
  gap: 14px;
  padding: 26px 26px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.995), rgba(244,248,253,0.96));
  border: 1px solid rgba(16,23,45,0.08);
  box-shadow: 0 24px 60px rgba(18,24,45,0.12);
}

.hero-v6-main h1,
.hero-v6-lead,
.hero-v6-actions {
  max-width: 100%;
}

.hero-v6-main h1 {
  white-space: normal;
  font-size: clamp(2.35rem, 4.1vw, 4.2rem);
}

.hero-v6-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #41506e;
}

.hero-v6-lead {
  margin: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-v6-actions {
  margin-top: 2px;
}


.hero-aside,
.proof-stack,
.advantage-list,
.process-flow,
.services-list {
  display: grid;
  gap: 18px;
}

.proof-stack,
.advantage-list {
  gap: 14px;
}

.showcase-grid > div:first-child,
.two-col > div:first-child {
  display: grid;
  align-content: start;
  gap: 12px;
}

.hero-copy,
.hero-aside {
  min-height: 100%;
  height: 100%;
}

.hero-aside {
  grid-template-rows: auto auto;
  align-content: start;
  gap: 14px;
  height: 100%;
}

.clean-main-hero-panel {
  min-height: 100%;
  justify-content: center;
}

.clean-side-hero-panel {
  justify-content: stretch;
}

.compact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 100%;
  height: 100%;
  padding: 24px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86));
  border: 1px solid rgba(16,23,45,0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(18,24,45,0.1);
}

.compact-hero-copy > * {
  margin-top: 0;
  margin-bottom: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.eyebrow.small { font-size: 0.72rem; }

h1,h2,h3 {
  margin: 0;
  line-height: 1.06;
  font-family: "Kumbh Sans", sans-serif;
  color: var(--text);
}

h1 {
  font-size: clamp(1.78rem, 2.08vw, 2.3rem);
  max-width: 14.5ch;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.2rem, 1.45vw, 1.56rem);
  max-width: 19ch;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

p,
.lead,
.section-lead,
.form-note,
.list-clean,
.nav,
.trust-grid span,
.advantage-item span,
.process-step span,
.hero-meta span,
.footer-brand p,
.footer-links a,
.footer-links li,
.footer-bottom,
.service-pill span {
  color: var(--muted);
}

.card p,
.industry-card p,
.proof-card p,
.service-pill span,
.audience-cta span,
.trust-grid span,
.advantage-item span,
.process-step span {
  line-height: 1.56;
}

.hero .lead,
.hero .hero-meta span,
.hero .eyebrow {
  color: #36425d;
}

.hero .lead {
  max-width: 31rem;
}

.hero h1 {
  color: #12182d;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
  max-width: none;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.lead,
.section-lead {
  font-size: 1rem;
  line-height: 1.65;
}

.rebuilt-hero-main .eyebrow,
.rebuilt-hero-proof .eyebrow {
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 2px;
}

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

.hero-meta span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  font-size: 0.82rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18,24,45,0.08);
}

.btn-primary {
  background: linear-gradient(180deg, #d20b07, var(--primary));
  color: #fff;
  box-shadow: 0 14px 32px rgba(191,3,0,0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(191,3,0,0.3);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255,255,255,0.88);
  color: var(--text);
}

.btn-sm { padding: 10px 16px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  background: rgba(191,3,0,0.12);
  border: 1px solid rgba(191,3,0,0.18);
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.lang-switch:hover {
  background: rgba(191,3,0,0.18);
  border-color: rgba(191,3,0,0.28);
  color: var(--primary-dark);
}

.hero-panel,
.card,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(18,24,45,0.12);
  border-color: rgba(16,23,45,0.12);
}

.hero-panel p:last-child,
.compact-hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-panel,
.card { padding: 18px; }

.hero-panel {
  min-height: 100%;
}

.statement-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.balanced-hero-panel {
  min-height: 100%;
}

.services-panel {
  display: flex;
  align-items: stretch;
  position: relative;
}

.glass-panel {
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,1));
  border-color: rgba(16,23,45,0.1);
}

.soft-panel {
  background:
    radial-gradient(circle at top right, rgba(191,3,0,0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,249,253,0.98));
  border-color: rgba(16,23,45,0.08);
}

.large-panel {
  min-height: 0;
}

.service-pill {
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  min-height: 0;
  align-content: start;
  border-radius: 16px;
  border: 1px solid rgba(16,23,45,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,253,255,0.94));
  box-shadow: 0 10px 22px rgba(18,24,45,0.05);
}

.compact-services-panel {
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 18px 40px rgba(18,24,45,0.08);
}

.compact-services-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.06));
  pointer-events: none;
}

.compact-services-panel > * {
  position: relative;
  z-index: 1;
}

.compact-services-list {
  gap: 8px;
}

.service-pill strong,
.trust-grid strong,
.advantage-item strong,
.process-step strong,
.footer-grid h3,
.footer-geo {
  color: var(--text);
}

.hero .service-pill strong {
  color: #172033;
}

.hero .service-pill span {
  color: #4f5d79;
}

.hero .soft-panel,
.hero .compact-services-panel {
  color: #172033;
}

.hero .soft-panel .services-list,
.hero .compact-services-panel .services-list {
  opacity: 1;
}

.section {
  padding: 84px 0;
}

.light-section {
  background: linear-gradient(180deg, rgba(242,246,252,0.86), rgba(236,241,249,1));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.audience-cta {
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(16,23,45,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 24px rgba(18,24,45,0.04);
}

.audience-cta strong {
  color: var(--text);
}

.audience-cta span {
  color: var(--muted);
}

.proof-light-section {
  background: linear-gradient(180deg, rgba(248,250,253,0.92), rgba(239,243,250,0.98));
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 100%;
  width: 100%;
  text-wrap: pretty;
}

.section-heading .section-lead {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
  text-wrap: pretty;
}

.premium-heading {
  max-width: 900px;
  width: 100%;
  padding-left: 0;
}

.narrow-heading {
  max-width: 840px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.trust-strip {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
}

.premium-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,252,255,0.88));
}

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

.trust-grid div {
  display: grid;
  gap: 6px;
  min-height: 112px;
  align-content: start;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(16, 23, 45, 0.08);
  box-shadow: 0 10px 24px rgba(18,24,45,0.04);
}

.solution-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.core-services-heading,
.section-heading-left {
  margin-bottom: 18px;
  padding-left: 0;
  justify-items: start;
  width: 100%;
}

.core-services-grid {
  align-items: stretch;
  margin-top: 10px;
}

.how-vega-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.solution-large,
.solution-wide {
  grid-row: auto;
  grid-column: auto;
}

.solution-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.core-service-card {
  padding: 24px 24px 22px;
  min-height: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,255,0.94));
}

.core-service-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
}

.core-service-card p {
  margin: 0;
  color: var(--muted);
}

.core-service-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.core-services-grid .core-service-card {
  height: 100%;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-detail-card {
  min-height: 100%;
}

.related-links {
  display: grid;
  gap: 16px;
  align-content: start;
}

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

.related-link-card {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(16,23,45,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(247,249,253,0.95));
  box-shadow: 0 16px 34px rgba(18,24,45,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.related-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(18,24,45,0.09);
  border-color: rgba(191,3,0,0.12);
}

.related-link-card strong {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.2;
}

.related-link-card span {
  color: var(--muted);
}

.solution-card h3,
.industry-card h3,
.proof-card h3,
.audience-cta strong,
.advantage-item strong,
.process-step strong {
  margin-bottom: 8px;
}

.industries-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.industry-card,
.proof-card,
.audience-cta,
.advantage-item,
.process-step {
  min-height: 100%;
}

.proof-card,
.advantage-item {
  padding: 22px 22px 20px;
  min-height: 0;
}

.showcase-grid > div:first-child .section-lead,
.two-col > div:first-child .section-lead,
.two-col > div:first-child h2 + p {
  max-width: 42rem;
}

.two-col > div:first-child {
  position: sticky;
  top: 110px;
}

.light-section .two-col > div:first-child {
  padding-top: 6px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(191,3,0,0.08);
}

.core-service-card .card-kicker {
  display: inline-flex;
  width: auto;
  margin-bottom: 16px;
}

.solution-card,
.industry-card,
.proof-card,
.advantage-item,
.process-step,
.refined-contact-card {
  box-shadow: var(--shadow-strong);
}

.refined-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,1));
}

.list-clean {
  margin: 0;
  padding-left: 18px;
}

.proof-card h3,
.advantage-item strong {
  margin: 0 0 8px;
}

.proof-card p,
.advantage-item span {
  margin: 0;
}

.list-clean li + li,
.proof-list li + li { margin-top: 10px; }

.advantage-item,
.process-step {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  min-height: 110px;
  align-content: start;
  border-radius: 20px;
  border: 1px solid rgba(16,23,45,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 22px rgba(18,24,45,0.04);
}

.proof-card {
  border-radius: 20px;
}

.contact-card {
  padding: 40px;
}

.premium-contact-wrap {
  background:
    radial-gradient(circle at bottom left, rgba(191,3,0,0.06), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.46));
}

.premium-contact {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), #ffffff);
}

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

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

.contact-form span {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: inherit;
  padding: 14px 16px;
  font: inherit;
}

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

.site-footer {
  background: linear-gradient(180deg, rgba(249,250,253,0.96), rgba(241,244,250,1));
  border-top: 1px solid var(--line);
  padding: 58px 0 28px;
}

.refined-footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 14px;
  display: block;
}

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

.footer-geo {
  margin-top: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 18px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 0;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-grid,
  .rebuilt-hero-shell,
  .rebuilt-hero-strip,
  .rebuilt-main-points,
  .two-col,
  .contact-card,
  .showcase-grid,
  .footer-grid,
  .solution-mosaic,
  .industries-band,
  .trust-grid,
  .audience-cta-grid,
  .service-detail-grid,
  .related-links-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .two-col > div:first-child {
    position: static;
    top: auto;
  }

  .rebuilt-hero-main,
  .rebuilt-hero-card,
  .rebuilt-strip-item {
    padding: 20px;
  }

  .solution-large,
  .solution-wide {
    grid-row: auto;
    grid-column: auto;
  }

  h1,h2 { max-width: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero { padding: 24px 0 38px; }
  .hero-surface,
  .hero-grid-lines {
    inset: 14px 14px 0 14px;
    border-radius: 24px;
  }
  .section { padding: 58px 0; }
  .hero-actions,
  .nav,
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn,
  .btn-sm,
  .hero-meta span { width: 100%; }
  .brand-logo { height: 42px; }
  .contact-card,
  .card,
  .hero-panel { border-radius: 18px; padding: 18px; }
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}


.nav-phone {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--primary);
}
