/* =========================================================
   UMBRELLA NETWORK SOLUTIONS
   Static landing page
   ========================================================= */

:root {
  --bg: #06090d;
  --bg-soft: #0a0f15;
  --panel: rgba(13, 19, 26, .94);
  --panel-strong: rgba(9, 14, 20, .98);
  --line: rgba(166, 184, 201, .20);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #f5f7f9;
  --muted: #9ba7b3;
  --muted-2: #6f7c89;
  --red: #f21d36;
  --red-dark: #a50b1b;
  --red-soft: rgba(242, 29, 54, .12);
  --blue: #4fa7ff;
  --radius: 15px;
  --shadow: 0 22px 64px rgba(0, 0, 0, .42);
  --transition: 170ms ease;
  --content: 1240px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  background: var(--bg);
}


body {
  margin: 0;

  color: var(--text);

  background:
    radial-gradient(
      circle at 86% 0%,
      rgba(242, 29, 54, .12),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 72%,
      rgba(45, 116, 191, .05),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #05080b,
      #0a0f15 48%,
      #05080b
    );

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  min-height: 100vh;

  overflow-x: hidden;
}


body::before {
  content: "";

  position: fixed;
  inset: 0;

  z-index: -2;

  pointer-events: none;

  opacity: .16;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, .025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 18%,
      #000 75%,
      transparent
    );
}


img {
  max-width: 100%;
}


a {
  color: inherit;
}


button,
input,
textarea,
select {
  font: inherit;
}


.skip-link {
  position: fixed;

  top: 10px;
  left: 10px;

  z-index: 9999;

  transform: translateY(-160%);

  padding: 10px 14px;

  border-radius: 8px;

  background: #fff;
  color: #000;

  font-weight: 800;

  text-decoration: none;
}


.skip-link:focus {
  transform: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  border-bottom:
    1px solid rgba(255, 255, 255, .09);

  background:
    rgba(5, 9, 13, .90);

  backdrop-filter:
    blur(16px);

  box-shadow:
    0 16px 44px rgba(0, 0, 0, .24);
}


.header-inner {
  width:
    min(
      var(--content),
      calc(100% - 36px)
    );

  min-height: 72px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(260px, 340px)
    1fr
    auto;

  align-items: center;

  gap: 24px;
}


.header-brand {
  display: inline-flex;

  align-items: center;

  min-width: 0;

  text-decoration: none;
}


.header-brand img {
  display: block;

  width: min(315px, 100%);

  height: auto;

  filter:
    drop-shadow(
      0 6px 20px rgba(242, 29, 54, .13)
    );
}


.primary-nav {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 27px;
}


.primary-nav a {
  position: relative;

  padding:
    26px
    0
    24px;

  color: #c9d0d8;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .075em;
  text-transform: uppercase;

  text-decoration: none;

  transition:
    color var(--transition);
}


.primary-nav a::after {
  content: "";

  position: absolute;

  left: 50%;
  right: 50%;
  bottom: 15px;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red),
      transparent
    );

  box-shadow:
    0 0 14px rgba(242, 29, 54, .55);

  transition:
    left var(--transition),
    right var(--transition);
}


.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: #fff;
}


.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  left: 0;
  right: 0;
}


.header-call {
  min-height: 48px;

  padding:
    0
    18px;

  display: inline-flex;

  align-items: center;

  gap: 11px;

  border:
    1px solid rgba(255, 52, 74, .70);

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      rgba(242, 29, 54, .18),
      rgba(92, 4, 16, .22)
    );

  box-shadow:
    0 0 24px rgba(242, 29, 54, .16),
    inset 0 1px rgba(255, 255, 255, .10);

  text-decoration: none;

  transition:
    transform var(--transition),
    filter var(--transition),
    box-shadow var(--transition);
}


.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);

  filter: brightness(1.10);

  box-shadow:
    0 0 32px rgba(242, 29, 54, .25),
    inset 0 1px rgba(255, 255, 255, .13);
}


.header-call img {
  width: 22px;
  height: 22px;
}


.header-call span {
  display: flex;

  flex-direction: column;

  line-height: 1.05;
}


.header-call small {
  color: #ff6d7e;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .12em;
  text-transform: uppercase;
}


.header-call strong {
  margin-top: 3px;

  color: #fff;

  font-size: 14px;
}


.nav-toggle {
  display: none;

  width: 44px;
  height: 40px;

  padding: 9px;

  border:
    1px solid rgba(255, 255, 255, .14);

  border-radius: 9px;

  background:
    rgba(255, 255, 255, .035);

  cursor: pointer;
}


.nav-toggle span {
  display: block;

  height: 2px;

  margin: 4px 0;

  border-radius: 999px;

  background: #fff;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 52px;

  padding:
    0
    20px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 13px;

  border-radius: 10px;

  color: #fff;

  text-decoration: none;

  transition:
    transform var(--transition),
    filter var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}


.button:hover,
.button:focus-visible {
  transform: translateY(-2px);

  filter: brightness(1.08);
}


.button img {
  width: 25px;
  height: 25px;

  flex: 0 0 auto;
}


.button span {
  display: flex;

  flex-direction: column;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .06em;
  line-height: 1.15;

  text-transform: uppercase;
}


.button span strong {
  margin-top: 3px;

  font-size: 12px;
  letter-spacing: 0;

  text-transform: none;
}


.button-primary {
  border:
    1px solid rgba(255, 76, 94, .76);

  background:
    linear-gradient(
      135deg,
      #f21d36,
      #a50b1b
    );

  box-shadow:
    0 13px 30px rgba(181, 7, 29, .28),
    0 0 25px rgba(242, 29, 54, .14),
    inset 0 1px rgba(255, 255, 255, .17);
}


.button-secondary {
  border:
    1px solid rgba(222, 231, 239, .40);

  background:
    rgba(9, 14, 20, .76);

  box-shadow:
    inset 0 1px rgba(255, 255, 255, .04);
}


.button-secondary:hover,
.button-secondary:focus-visible {
  border-color:
    rgba(242, 29, 54, .56);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  overflow: hidden;

  border-bottom:
    1px solid rgba(255, 255, 255, .10);
}


.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(242, 29, 54, .12),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      #05080c 0%,
      #080d13 44%,
      rgba(8, 13, 19, .82) 62%,
      rgba(8, 13, 19, .55) 100%
    );
}


.hero-grid {
  width:
    min(
      1600px,
      100%
    );

  min-height:
    clamp(
      620px,
      72vh,
      800px
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(600px, .95fr)
    minmax(620px, 1.05fr);

  align-items: stretch;
}


.hero-copy {
  position: relative;

  z-index: 3;

  padding:
    74px
    48px
    64px
    clamp(38px, 4vw, 68px);

  display: flex;

  flex-direction: column;

  justify-content: center;
}


.hero-logo-wrap {
  width: min(540px, 100%);
}


.hero-logo {
  display: block;

  width: 100%;

  height: auto;

  mix-blend-mode: screen;

  filter:
    contrast(1.06)
    drop-shadow(
      0 12px 34px rgba(242, 29, 54, .18)
    );
}


.hero-logo-wrap > span {
  display: block;

  margin:
    8px
    0
    0
    38px;

  color:
    #aeb7c1;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .18em;
  text-transform: uppercase;
}


.hero-kicker {
  margin-top: 24px;

  display: flex;

  align-items: center;

  gap: 18px;

  color: #d8dee4;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .25em;
  text-transform: uppercase;
}


.hero-kicker i {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--red);

  box-shadow:
    0 0 12px rgba(242, 29, 54, .72);
}


.hero h1 {
  max-width: 720px;

  margin:
    24px
    0
    18px;

  color: #fff;

  font-size:
    clamp(
      45px,
      4vw,
      66px
    );

  line-height: .98;

  letter-spacing: -.042em;

  text-transform: uppercase;
}


.hero h1 span {
  display: block;
}


.hero h1 strong {
  display: block;

  color: var(--red);

  text-shadow:
    0 0 25px rgba(242, 29, 54, .18);
}


.hero-lead {
  max-width: 670px;

  margin: 0;

  color: #c0c8d0;

  font-size: 14px;
  line-height: 1.78;
}


.hero-actions {
  margin-top: 29px;

  display: flex;

  align-items: stretch;

  gap: 13px;

  flex-wrap: wrap;
}


.hero-visual {
  position: relative;

  min-height: 620px;

  overflow: hidden;

  clip-path:
    polygon(
      8% 0,
      100% 0,
      100% 100%,
      0 100%
    );
}


.hero-visual > img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: 57% center;

  filter:
    saturate(1.08)
    contrast(1.05)
    brightness(.93);
}


.hero-visual-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 12, .88),
      rgba(5, 8, 12, .15) 35%,
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(5, 8, 12, .10),
      transparent 60%,
      rgba(5, 8, 12, .55)
    );
}


.partner-badge {
  position: absolute;

  right: 6%;
  bottom: 6%;

  min-width: 245px;

  padding:
    17px
    23px;

  border:
    1px solid rgba(255, 63, 83, .72);

  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      rgba(14, 20, 27, .92),
      rgba(6, 10, 15, .91)
    );

  box-shadow:
    0 18px 46px rgba(0, 0, 0, .40),
    0 0 22px rgba(242, 29, 54, .13);

  text-align: right;

  transform: skewX(-11deg);
}


.partner-badge > * {
  display: block;

  transform: skewX(11deg);
}


.partner-badge span {
  color: #ff4154;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .18em;
  text-transform: uppercase;
}


.partner-badge strong {
  margin-top: 4px;

  font-size: 30px;

  font-style: italic;

  line-height: 1;

  text-transform: uppercase;
}


.partner-badge small {
  margin-top: 6px;

  color: #b1bbc4;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .15em;
  text-transform: uppercase;
}


/* =========================================================
   SHARED SECTION HEADING
   ========================================================= */

.section-heading {
  max-width: 840px;

  margin:
    0
    auto
    34px;

  text-align: center;
}


.section-heading > span,
.section-eyebrow {
  color: #ff3b50;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .21em;
  text-transform: uppercase;
}


.section-heading h2 {
  margin:
    9px
    0
    8px;

  color: #fff;

  font-size:
    clamp(
      34px,
      4vw,
      54px
    );

  line-height: 1;

  letter-spacing: -.035em;

  text-transform: uppercase;
}


.section-heading p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


.section-heading.compact {
  margin-bottom: 28px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  padding:
    76px
    max(
      24px,
      calc(
        (100vw - var(--content)) / 2
      )
    )
    74px;

  border-bottom:
    1px solid rgba(255, 255, 255, .09);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(242, 29, 54, .055),
      transparent 28%
    ),
    rgba(7, 11, 16, .78);
}


.service-grid {
  max-width: var(--content);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(
      6,
      minmax(0, 1fr)
    );

  gap: 12px;
}


.service-card {
  position: relative;

  min-height: 250px;

  padding:
    26px
    17px
    22px;

  border:
    1px solid rgba(137, 156, 174, .27);

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      rgba(16, 23, 31, .98),
      rgba(8, 13, 19, .98)
    );

  box-shadow:
    0 13px 30px rgba(0, 0, 0, .18),
    inset 0 1px rgba(255, 255, 255, .025);

  text-align: center;

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}


.service-card::after {
  content: "";

  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 0;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red),
      transparent
    );

  box-shadow:
    0 0 18px rgba(242, 29, 54, .40);
}


.service-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(242, 29, 54, .48);

  box-shadow:
    0 20px 42px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(242, 29, 54, .06);
}


.service-card img {
  width: 58px;
  height: 58px;

  margin: 0 auto 16px;
}


.service-card h3 {
  margin:
    0
    0
    10px;

  color: #fff;

  font-size: 15px;

  line-height: 1.1;

  text-transform: uppercase;
}


.service-card p {
  margin: 0;

  color: #a0acb7;

  font-size: 11px;
  line-height: 1.63;
}


/* =========================================================
   PERFORMANCE / WHY US
   ========================================================= */

.performance-section {
  min-height: 530px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, .95fr);

  border-bottom:
    1px solid rgba(255, 255, 255, .09);
}


.performance-image {
  position: relative;

  overflow: hidden;
}


.performance-image::after {
  content: "";

  position: absolute;

  top: 0;
  right: -1px;

  width: 65px;
  height: 100%;

  background:
    linear-gradient(
      130deg,
      transparent 0 48%,
      var(--red) 49% 51%,
      rgba(7, 11, 16, .98) 52%
    );

  pointer-events: none;
}


.performance-image > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(1.05)
    contrast(1.08)
    brightness(.86);
}


.image-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 12, .10),
      rgba(5, 8, 12, .04) 60%,
      rgba(5, 8, 12, .70)
    ),
    linear-gradient(
      0deg,
      rgba(5, 8, 12, .42),
      transparent 45%
    );
}


.performance-copy {
  padding:
    70px
    max(
      34px,
      calc(
        (100vw - var(--content)) / 2
      )
    )
    65px
    70px;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(242, 29, 54, .06),
      transparent 30%
    ),
    #080c11;
}


.performance-copy h2 {
  margin:
    10px
    0
    17px;

  color: #fff;

  font-size:
    clamp(
      35px,
      4vw,
      53px
    );

  line-height: 1.02;

  letter-spacing: -.035em;

  text-transform: uppercase;
}


.performance-copy h2 strong {
  display: block;

  color: var(--red);
}


.performance-copy > p {
  max-width: 660px;

  margin: 0;

  color: #a8b2bc;

  font-size: 13px;
  line-height: 1.75;
}


.benefit-grid {
  max-width: 680px;

  margin-top: 31px;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap:
    23px
    28px;
}


.benefit {
  display: grid;

  grid-template-columns:
    45px
    1fr;

  align-items: start;

  gap: 13px;
}


.benefit img {
  width: 42px;
  height: 42px;
}


.benefit strong {
  display: block;

  color: #fff;

  font-size: 14px;

  text-transform: uppercase;
}


.benefit span {
  display: block;

  margin-top: 4px;

  color: #8996a3;

  font-size: 11px;
  line-height: 1.45;
}


/* =========================================================
   SUPPORT STRIP
   ========================================================= */

.support-strip {
  padding:
    56px
    max(
      24px,
      calc(
        (100vw - var(--content)) / 2
      )
    );

  display: grid;

  grid-template-columns:
    minmax(300px, .75fr)
    minmax(0, 1.25fr);

  align-items: center;

  gap: 44px;

  border-bottom:
    1px solid rgba(255, 255, 255, .09);

  background:
    linear-gradient(
      180deg,
      rgba(10, 15, 21, .98),
      rgba(6, 10, 15, .98)
    );
}


.support-strip-copy > span {
  color: #ff3c50;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .18em;
  text-transform: uppercase;
}


.support-strip-copy h2 {
  margin:
    8px
    0
    11px;

  color: #fff;

  font-size:
    clamp(
      31px,
      3.4vw,
      48px
    );

  line-height: 1.05;

  letter-spacing: -.035em;

  text-transform: uppercase;
}


.support-strip-copy p {
  max-width: 560px;

  margin: 0;

  color: #98a5b1;

  font-size: 12px;
  line-height: 1.7;
}


.support-feature-grid {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 11px;
}


.support-feature-grid article {
  min-height: 182px;

  padding:
    21px
    17px;

  border:
    1px solid rgba(137, 156, 174, .24);

  border-radius: 12px;

  background:
    rgba(12, 18, 25, .87);

  text-align: center;
}


.support-feature-grid img {
  width: 49px;
  height: 49px;

  margin-bottom: 12px;
}


.support-feature-grid strong {
  display: block;

  color: #fff;

  font-size: 13px;

  text-transform: uppercase;
}


.support-feature-grid p {
  margin:
    7px
    0
    0;

  color: #8b98a4;

  font-size: 10px;
  line-height: 1.55;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industries-section {
  padding:
    68px
    max(
      24px,
      calc(
        (100vw - var(--content)) / 2
      )
    )
    72px;

  border-bottom:
    1px solid rgba(255, 255, 255, .09);

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(33, 86, 138, .055),
      transparent 38%
    ),
    #070b10;
}


.industry-grid {
  max-width: var(--content);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(
      6,
      minmax(0, 1fr)
    );

  gap: 12px;
}


.industry-grid article {
  position: relative;

  min-height: 160px;

  padding: 22px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 13px;

  border:
    1px solid rgba(137, 156, 174, .23);

  border-radius: 11px;

  background:
    linear-gradient(
      145deg,
      rgba(16, 23, 31, .96),
      rgba(8, 13, 19, .98)
    );

  text-align: center;
}


.industry-grid article::after {
  content: "";

  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 0;

  height: 2px;

  background: var(--red);

  box-shadow:
    0 0 14px rgba(242, 29, 54, .36);
}


.industry-grid img {
  width: 54px;
  height: 54px;
}


.industry-grid strong {
  color: #fff;

  font-size: 11px;

  letter-spacing: .03em;

  text-transform: uppercase;
}


/* =========================================================
   CONTACT CTA
   ========================================================= */

.contact-section {
  min-height: 410px;

  display: grid;

  grid-template-columns:
    minmax(0, .78fr)
    minmax(0, 1.22fr);

  align-items: stretch;

  border-bottom:
    1px solid rgba(255, 255, 255, .09);

  background:
    linear-gradient(
      135deg,
      rgba(45, 3, 10, .42),
      rgba(6, 10, 15, .98) 44%
    );
}


.contact-image {
  position: relative;

  overflow: hidden;
}


.contact-image::after {
  content: "";

  position: absolute;

  top: 0;
  right: -2px;

  width: 75px;
  height: 100%;

  background:
    linear-gradient(
      128deg,
      transparent 0 47%,
      var(--red) 48% 50%,
      rgba(7, 11, 16, .98) 51%
    );
}


.contact-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  filter:
    saturate(1.12)
    contrast(1.07)
    brightness(.88);
}


.contact-image-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 12, .04),
      rgba(5, 8, 12, .58)
    );
}


.contact-copy {
  padding:
    66px
    max(
      34px,
      calc(
        (100vw - var(--content)) / 2
      )
    )
    60px
    78px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}


.contact-copy > span {
  color: #ff4255;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .22em;
  text-transform: uppercase;
}


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

  color: #fff;

  font-size:
    clamp(
      39px,
      4.2vw,
      59px
    );

  line-height: 1;

  letter-spacing: -.035em;

  text-transform: uppercase;
}


.contact-copy p {
  max-width: 650px;

  margin: 0;

  color: #a2adb8;

  font-size: 13px;
  line-height: 1.72;
}


.contact-actions {
  margin-top: 26px;

  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding:
    35px
    max(
      24px,
      calc(
        (100vw - var(--content)) / 2
      )
    )
    24px;

  background:
    linear-gradient(
      180deg,
      #06090d,
      #030507
    );
}


.footer-grid {
  display: grid;

  grid-template-columns:
    minmax(260px, .9fr)
    minmax(300px, 1.2fr)
    minmax(220px, .7fr);

  align-items: center;

  gap: 34px;
}


.footer-brand img {
  display: block;

  width: min(305px, 100%);

  height: auto;
}


.footer-brand > a {
  display: inline-block;

  margin:
    8px
    0
    0
    35px;

  color: #7c8995;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .15em;
  text-transform: uppercase;

  text-decoration: none;
}


.footer-brand > a:hover {
  color: #fff;
}


.footer-message {
  padding:
    0
    35px;

  border-left:
    1px solid rgba(255, 255, 255, .10);
  border-right:
    1px solid rgba(255, 255, 255, .10);

  text-align: center;
}


.footer-message strong {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 17px;

  color: var(--red);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .26em;
  text-transform: uppercase;
}


.footer-message i {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #fff;
}


.footer-message span {
  display: block;

  margin-top: 11px;

  color: #b4bdc6;

  font-size: 12px;
}


.footer-call {
  text-align: right;
}


.footer-call span {
  display: block;

  color: #7b8793;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .12em;
  text-transform: uppercase;
}


.footer-call a {
  display: inline-block;

  margin-top: 4px;

  color: #fff;

  font-size: 22px;
  font-weight: 900;

  text-decoration: none;
}


.footer-call a:hover {
  color: #ff4a5e;
}


.footer-bottom {
  margin-top: 27px;

  padding-top: 20px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid rgba(255, 255, 255, .08);

  color: #66727e;

  font-size: 9px;
}


.footer-bottom nav {
  display: flex;

  align-items: center;

  gap: 17px;

  flex-wrap: wrap;
}


.footer-bottom a {
  color: #74818d;

  text-decoration: none;
}


.footer-bottom a:hover {
  color: #fff;
}


.mobile-call {
  display: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

  .header-inner {
    grid-template-columns:
      minmax(230px, 285px)
      1fr
      auto;

    gap: 17px;
  }


  .primary-nav {
    gap: 18px;
  }


  .header-call {
    padding:
      0
      13px;
  }


  .hero-grid {
    grid-template-columns:
      minmax(540px, 1fr)
      minmax(480px, 1fr);
  }


  .hero-copy {
    padding:
      68px
      38px
      58px
      38px;
  }


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


  .service-card {
    min-height: 225px;
  }


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

}


@media (max-width: 980px) {

  .header-inner {
    min-height: 68px;

    grid-template-columns:
      minmax(230px, 1fr)
      auto
      auto;
  }


  .nav-toggle {
    display: block;

    order: 2;
  }


  .header-call {
    order: 3;
  }


  .primary-nav {
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    display: none;

    padding:
      14px
      18px
      18px;

    flex-direction: column;

    align-items: stretch;

    gap: 4px;

    border-bottom:
      1px solid rgba(255, 255, 255, .10);

    background:
      rgba(5, 9, 13, .98);

    box-shadow:
      0 22px 40px rgba(0, 0, 0, .36);
  }


  .primary-nav.open {
    display: flex;
  }


  .primary-nav a {
    min-height: 42px;

    padding:
      0
      12px;

    display: flex;

    align-items: center;

    border-radius: 8px;
  }


  .primary-nav a::after {
    display: none;
  }


  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav a.active {
    background:
      rgba(242, 29, 54, .10);
  }


  .hero-grid {
    min-height: auto;

    grid-template-columns: 1fr;
  }


  .hero-copy {
    padding:
      70px
      28px
      52px;
  }


  .hero-visual {
    min-height: 470px;

    clip-path: none;
  }


  .hero-visual-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 8, 12, .70),
        rgba(5, 8, 12, .05) 35%,
        rgba(5, 8, 12, .35)
      );
  }


  .performance-section {
    grid-template-columns: 1fr;
  }


  .performance-image {
    min-height: 420px;
  }


  .performance-image::after {
    display: none;
  }


  .performance-copy {
    padding:
      55px
      28px;
  }


  .support-strip {
    grid-template-columns: 1fr;

    gap: 30px;
  }


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


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


  .contact-image {
    min-height: 350px;
  }


  .contact-image::after {
    display: none;
  }


  .contact-copy {
    padding:
      50px
      28px
      60px;
  }


  .footer-grid {
    grid-template-columns:
      1fr;

    text-align: center;
  }


  .footer-brand img {
    margin: 0 auto;
  }


  .footer-brand > a {
    margin-left: 0;
  }


  .footer-message {
    padding:
      24px
      0;

    border-left: 0;
    border-right: 0;
    border-top:
      1px solid rgba(255, 255, 255, .08);
    border-bottom:
      1px solid rgba(255, 255, 255, .08);
  }


  .footer-call {
    text-align: center;
  }

}


@media (max-width: 680px) {

  body {
    padding-bottom: 62px;
  }


  .header-inner {
    width:
      calc(100% - 24px);

    grid-template-columns:
      minmax(180px, 1fr)
      auto;
  }


  .header-brand img {
    width: 238px;
  }


  .header-call {
    display: none;
  }


  .nav-toggle {
    order: initial;
  }


  .primary-nav {
    top: 68px;
  }


  .hero-copy {
    padding:
      52px
      18px
      44px;
  }


  .hero-logo-wrap > span {
    margin-left: 15px;

    font-size: 7px;
  }


  .hero-kicker {
    gap: 10px;

    font-size: 8px;
  }


  .hero h1 {
    margin-top: 20px;

    font-size:
      clamp(
        39px,
        12vw,
        58px
      );
  }


  .hero-lead {
    font-size: 13px;
  }


  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }


  .button {
    width: 100%;
  }


  .hero-visual {
    min-height: 360px;
  }


  .partner-badge {
    right: 17px;
    bottom: 17px;

    min-width: 205px;

    padding:
      14px
      18px;
  }


  .partner-badge strong {
    font-size: 24px;
  }


  .services-section {
    padding:
      57px
      14px;
  }


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


  .service-card {
    min-height: 0;

    padding:
      24px
      20px;
  }


  .performance-image {
    min-height: 300px;
  }


  .performance-copy {
    padding:
      48px
      18px;
  }


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


  .support-strip {
    padding:
      48px
      14px;
  }


  .support-feature-grid {
    grid-template-columns: 1fr;
  }


  .support-feature-grid article {
    min-height: 0;
  }


  .industries-section {
    padding:
      55px
      14px;
  }


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


  .contact-image {
    min-height: 260px;
  }


  .contact-copy {
    padding:
      43px
      18px
      52px;
  }


  .site-footer {
    padding:
      31px
      16px
      24px;
  }


  .footer-message strong {
    gap: 9px;

    letter-spacing: .15em;
  }


  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }


  .footer-bottom nav {
    justify-content: center;
  }


  .mobile-call {
    position: fixed;

    left: 12px;
    right: 12px;
    bottom: 9px;

    z-index: 150;

    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border:
      1px solid rgba(255, 85, 102, .74);

    border-radius: 11px;

    background:
      linear-gradient(
        135deg,
        #f21d36,
        #a50b1b
      );

    box-shadow:
      0 12px 34px rgba(0, 0, 0, .52),
      0 0 25px rgba(242, 29, 54, .22);

    color: #fff;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .06em;
    text-transform: uppercase;

    text-decoration: none;
  }


  .mobile-call img {
    width: 21px;
    height: 21px;
  }

}


@media (max-width: 420px) {

  .header-brand img {
    width: 205px;
  }


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


  .hero-kicker {
    letter-spacing: .15em;
  }


  .footer-call a {
    font-size: 19px;
  }

}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

}


/* =========================================================
   HERO LAYOUT BALANCE FIX V2
   Removes the double desktop left gutter that compressed the
   copy column and keeps the headline/actions comfortably spaced.
   ========================================================= */

@media (min-width: 1201px) {

  .hero-grid {
    width: min(1560px, 100%);

    grid-template-columns:
      minmax(650px, .94fr)
      minmax(690px, 1.06fr);

    min-height:
      clamp(
        650px,
        70vh,
        790px
      );
  }


  .hero-copy {
    padding:
      70px
      58px
      64px
      clamp(48px, 4.2vw, 76px);
  }


  .hero-logo-wrap {
    width: min(470px, 100%);
  }


  .hero-logo-wrap > span {
    margin-left: 30px;
  }


  .hero-kicker {
    margin-top: 20px;
  }


  .hero h1 {
    max-width: 710px;

    margin-top: 25px;

    font-size:
      clamp(
        47px,
        3.25vw,
        56px
      );

    line-height: .98;
  }


  .hero-lead {
    max-width: 650px;
  }


  .hero-actions {
    flex-wrap: nowrap;
  }


  .hero-actions .button {
    min-width: 0;
  }


  .hero-visual {
    min-height: 650px;

    clip-path:
      polygon(
        4% 0,
        100% 0,
        100% 100%,
        0 100%
      );
  }


  .hero-visual > img {
    object-position: 52% center;
  }

}


@media (min-width: 1201px) and (max-width: 1380px) {

  .hero-grid {
    grid-template-columns:
      minmax(590px, .96fr)
      minmax(590px, 1.04fr);
  }


  .hero-copy {
    padding-left: 42px;
    padding-right: 42px;
  }


  .hero h1 {
    font-size:
      clamp(
        45px,
        3.75vw,
        53px
      );
  }

}

/* END HERO LAYOUT BALANCE FIX V2 */
