/* =========================================================
   ROOT / DESIGN SYSTEM
========================================================= */

:root {
  --green-dark: #073b2a;
  --green-dark-2: #0b4d38;

  --green: #168a5b;
  --green-light: #2dbb7f;
  --green-soft: #eaf7f1;

  --blue: #2f6df6;
  --blue-light: #79a2ff;
  --blue-soft: #edf3ff;
  --blue-hover: #3e79f7;

  --navy: #071329;
  --navy-deep: #061126;

  --white: #ffffff;

  --bg: #f4f8f6;
  --text: #10231c;
  --muted: #61716a;
  --border: #d9e6df;

  --max-width: 1180px;

  --shadow:
    0 10px 28px rgba(7, 59, 42, 0.07);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

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


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: clamp(12px, 0.75vw, 13px);
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 5vw, 70px);
}

h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 46px);
}

h3 {
  margin: 0;
}

h1 span,
h2 span {
  color: var(--blue-light);
}


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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(4, 13, 30, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 6px;

  background:
    linear-gradient(
      145deg,
      #4d83ff,
      #285fe0
    );

  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
}

.brand-copy small {
  color: #aab5c8;
  font-size: 10px;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;

  color: #f2f5fb;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0 23px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #ffffff;
}

.desktop-nav a.active::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;

  height: 2px;

  background: var(--blue-light);
}

.mobile-menu-button {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;

  background: transparent;
}

.mobile-menu-button span {
  display: block;

  width: 19px;
  height: 2px;

  margin: 4px auto;

  background: #ffffff;
}

.mobile-nav {
  display: none;

  padding: 10px 20px 20px;

  background: var(--navy);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;

  padding: 13px 0;

  color: #ffffff;
  font-size: 15px;

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


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

.hero {
  position: relative;

  min-height: 520px;

  overflow: hidden;

  padding-top: 72px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 76% 48%,
      rgba(37, 99, 235, 0.2),
      transparent 30%
    ),
    linear-gradient(
      112deg,
      #061126 0%,
      #07152d 56%,
      #061127 100%
    );

  color: #ffffff;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(
      rgba(112, 158, 255, 0.22) 1px,
      transparent 1px
    );

  background-size: 34px 34px;

  opacity: 0.08;

  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    500px;

  align-items: center;

  min-height: 448px;
}

.hero-content {
  max-width: 670px;
  padding: 50px 0;
}

.hero .eyebrow {
  color: #79a2ff;
}

.hero h1 {
  color: #f7f9fd;
}

.hero-rule {
  width: 40px;
  height: 2px;

  margin: 0 0 20px;

  background: var(--blue-light);
}

.hero-description {
  max-width: 560px;

  margin: 0 0 28px;

  color: #c2ccdc;

  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}


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

.button {
  min-height: 46px;

  padding: 0 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  border: 1px solid transparent;
  border-radius: 5px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.button span {
  font-size: 18px;
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(47, 109, 246, 0.22);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #ffffff;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.button-outline-dark {
  border-color: var(--border);
  background: #ffffff;
  color: var(--text);
}

.button-outline-dark:hover {
  border-color: #b9cdf7;
  background: var(--blue-soft);
  color: var(--blue);
}

.button:focus-visible,
.mobile-menu-button:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid rgba(47, 109, 246, 0.25);
  outline-offset: 2px;
}


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

.hero-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 27px;

  margin-top: 32px;

  color: #d8e0ee;

  font-size: 16px;
}


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

.hero-network {
  position: absolute;
  z-index: 1;

  right: 1%;
  top: 50%;

  width: min(510px, 47vw);

  aspect-ratio: 1.25;

  transform: translateY(-49%);

  opacity: 0.94;
}

.globe {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 310px;
  height: 310px;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(45, 187, 127, 0.62);

  border-radius: 50%;

  box-shadow:
    inset 0 0 55px rgba(22, 138, 91, 0.08),
    0 0 40px rgba(22, 138, 91, 0.08);
}

.globe::before,
.globe::after {
  content: "";

  position: absolute;

  border: 1px solid rgba(45, 187, 127, 0.36);
  border-radius: 50%;
}

.globe::before {
  inset: 8px 64px;
  transform: rotate(32deg);
}

.globe::after {
  inset: 5px 112px;
  transform: rotate(-24deg);
}

.globe-back {
  width: 280px;
  height: 280px;

  opacity: 0.6;

  transform:
    translate(-50%, -50%)
    rotate(66deg);
}

.network-path {
  position: absolute;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(45, 187, 127, 0.72),
      transparent
    );

  transform-origin: center;
}

.path-a {
  width: 390px;
  left: calc(50% - 195px);
  top: 37%;
  transform: rotate(-21deg);
}

.path-b {
  width: 365px;
  left: calc(50% - 182px);
  top: 57%;
  transform: rotate(20deg);
}

.path-c {
  width: 300px;
  left: calc(50% - 150px);
  top: 49%;
  transform: rotate(-48deg);
}

.path-d {
  width: 310px;
  left: calc(50% - 155px);
  top: 50%;
  transform: rotate(48deg);
}

.node {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #2dbb7f;

  box-shadow:
    0 0 0 3px rgba(45, 187, 127, 0.16),
    0 0 13px rgba(45, 187, 127, 0.65);
}

.n1 {
  left: 20%;
  top: 22%;
}

.n2 {
  left: 42%;
  top: 10%;
}

.n3 {
  left: 65%;
  top: 21%;
}

.n4 {
  left: 79%;
  top: 44%;
}

.n5 {
  left: 64%;
  top: 76%;
}

.n6 {
  left: 36%;
  top: 86%;
}

.n7 {
  left: 14%;
  top: 69%;
}

.n8 {
  left: 46%;
  top: 51%;

  width: 10px;
  height: 10px;

  background: #45d994;

  box-shadow:
    0 0 0 4px rgba(45, 187, 127, 0.16),
    0 0 18px rgba(45, 187, 127, 0.8);
}

.n9 {
  left: 32%;
  top: 39%;
}

.globe-front {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(22, 138, 91, 0.10),
      transparent 55%
    );
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  position: relative;
  z-index: 4;

  margin-top: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  background: #ffffff;

  border: 1px solid var(--border);
  border-radius: 8px;

  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 88px;

  display: flex;
  align-items: center;

  gap: 15px;

  padding: 18px 28px;

  border-right: 1px solid var(--border);
}

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

.trust-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border: 1px solid #d8e5ff;
  border-radius: 50%;

  background: #f8fbff;

  color: var(--blue);

  font-size: 19px;
}

.trust-item strong {
  display: block;

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

.trust-item small {
  display: block;

  max-width: 240px;

  color: var(--muted);

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


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

.services-section {
  padding: 68px 0 78px;

  background: var(--bg);
}

.section-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.62fr);

  gap: 55px;

  align-items: end;
}

.services-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: clamp(34px, 3vw, 43px);
}

.section-heading > p {
  margin: 0 0 4px;

  color: #354156;

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

.services-grid {
  display: grid;

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

  gap: 16px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

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

  padding: 21px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--border);
  border-radius: 7px;

  background: #ffffff;

  box-shadow:
    0 3px 11px rgba(20, 39, 69, 0.025);

  cursor: pointer;

  outline: none;

  user-select: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);

  border-color: #b9cdf7;

  box-shadow:
    0 11px 25px rgba(20, 39, 69, 0.09);
}

.service-top {
  display: flex;

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

  margin-bottom: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: var(--blue-soft);
  color: var(--blue);

  font-size: 22px;
  font-weight: 700;
}

.service-number {
  color: var(--blue);

  font-size: 14px;
  font-weight: 800;
}

.service-card h3 {
  min-height: 42px;

  margin: 0 0 5px;

  font-size: 17px;
  line-height: 1.25;
}

.service-card > strong {
  min-height: 20px;

  display: block;

  color: #263249;

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

.service-card p {
  min-height: 62px;

  margin: 9px 0 14px;

  color: #435067;

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

.learn-more {
  margin-top: auto;

  color: var(--blue);

  font-size: 12px;
  font-weight: 750;
}

.learn-more b {
  margin-left: 5px;

  font-size: 15px;
}

.service-card-other {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7faff
    );
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background: #071329;

  color: #ffffff;
}

.process-layout {
  display: grid;

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

  align-items: center;

  column-gap: 62px;
}

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

.process-heading .eyebrow {
  margin: 0 0 15px;

  color: #70a0ff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.process-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(34px, 3vw, 43px);

  line-height: 1.12;
}

.process-heading h2 span {
  color: #5b8cff;
}

.process-flow {
  position: relative;

  display: grid;

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

  align-items: start;

  width: 100%;
}

.process-step {
  position: relative;

  min-width: 0;

  padding: 0 24px;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}


/* =========================================================
   PROCESS CONNECTOR
========================================================= */

.process-step:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 24px;

  left: calc(50% + 30px);

  width: calc(100% - 60px);

  height: 1px;

  background:
    repeating-linear-gradient(
      to right,
      rgba(91, 140, 255, 0.28) 0,
      rgba(91, 140, 255, 0.28) 2px,
      transparent 2px,
      transparent 8px
    );
}

.process-step:not(:last-child)::before {
  content: "";
}


/* =========================================================
   PROCESS ICON
========================================================= */

.step-icon {
  position: relative;
  z-index: 5;

  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  margin-bottom: 16px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #4380ff,
      #2d65e5
    );

  color: #ffffff;

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

  letter-spacing: 1px;

  box-shadow:
    0 0 0 6px rgba(47, 109, 246, 0.08);
}


/* =========================================================
   PROCESS CONTENT
========================================================= */

.step-content {
  max-width: 175px;
}

.step-number {
  display: block;

  margin-bottom: 6px;

  color: #5e8ef8;

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

  letter-spacing: 0.3px;
}

.process-step h3 {
  margin: 0 0 7px;

  color: #ffffff;

  font-size: 16px;
  line-height: 1.3;
}

.process-step p {
  margin: 0;

  color: #b8c5d8;

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


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

.contact-section {
  padding: 58px 0 44px;

  background: var(--bg);
}

.contact-top {
  display: grid;

  grid-template-columns:
    1.15fr
    1fr
    1fr;

  gap: 16px;
}

.contact-top h2 {
  font-size: clamp(32px, 2.8vw, 40px);
}

.contact-card {
  display: flex;
  align-items: center;

  gap: 15px;

  padding: 21px;

  border: 1px solid var(--border);
  border-radius: 8px;

  background: #f8fbff;
}

.whatsapp-card {
  background: #f4faf6;
}

.contact-card-icon {
  width: 50px;
  height: 50px;

  flex: 0 0 50px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: #edf3ff;

  color: var(--blue);

  font-size: 24px;
}

.contact-card strong,
.contact-card small,
.contact-card a {
  display: block;
}

.contact-card strong {
  font-size: 13px;
  line-height: 1.35;
}

.contact-card small {
  margin: 4px 0;

  color: var(--muted);

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

.contact-card a {
  color: var(--blue);

  font-size: 12px;
}

.contact-info {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  margin-top: 14px;

  background: #ffffff;

  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-info > div {
  display: flex;
  align-items: center;

  gap: 14px;

  padding: 17px 22px;

  border-right: 1px solid var(--border);
}

.contact-info > div:last-child {
  border-right: 0;
}

.contact-info strong,
.contact-info small,
.contact-info a {
  display: block;
}

.contact-info strong {
  font-size: 12px;
  line-height: 1.3;
}

.contact-info small,
.contact-info a {
  color: var(--muted);

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


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

.site-footer {
  padding-top: 44px;

  background: #081329;

  color: #ffffff;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.45fr
    0.85fr
    0.7fr
    0.7fr;

  gap: 48px;

  padding-bottom: 32px;
}

.footer-company p {
  max-width: 310px;

  margin: 14px 0;

  color: #a8b4c7;

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

.footer-column {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.footer-column strong {
  font-size: 13px;
}

.footer-column a {
  color: #b4bfd0;

  font-size: 11px;

  transition:
    color 0.18s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  padding: 14px 0;

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

  color: #758198;

  font-size: 10px;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
  position: fixed;
  inset: 0;

  z-index: 1000;

  display: none;

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

  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(4, 13, 30, 0.72);

  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;

  width: min(100%, 680px);

  max-height:
    calc(100vh - 36px);

  overflow-y: auto;

  padding: 34px;

  border-radius: 10px;

  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;

  top: 14px;
  right: 16px;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: #ffffff;

  color: var(--text);

  font-size: 23px;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.modal-close:hover {
  background: var(--blue-soft);
  border-color: #b9cdf7;
  color: var(--blue);
}

.modal-dialog h2 {
  padding-right: 46px;

  font-size: clamp(30px, 3vw, 36px);
}

.modal-description {
  color: var(--muted);

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


/* =========================================================
   SERVICE REQUEST FORM
========================================================= */

#serviceRequestForm {
  display: grid;

  gap: 17px;

  margin-top: 25px;
}

#serviceRequestForm label,
#serviceRequestForm legend {
  display: grid;

  gap: 7px;

  color: var(--text);

  font-size: 12px;
  font-weight: 700;
}

.form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}

#serviceRequestForm input,
#serviceRequestForm select,
#serviceRequestForm textarea {
  width: 100%;

  padding: 12px 13px;

  border: 1px solid var(--border);
  border-radius: 5px;

  background: #ffffff;

  color: var(--text);

  font-size: 13px;

  outline: none;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

#serviceRequestForm input:focus,
#serviceRequestForm select:focus,
#serviceRequestForm textarea:focus {
  border-color: var(--blue);

  box-shadow:
    0 0 0 3px rgba(47, 109, 246, 0.1);
}

#serviceRequestForm textarea {
  min-height: 105px;

  resize: vertical;
}

#serviceRequestForm fieldset {
  display: flex;

  align-items: center;

  gap: 20px;

  margin: 0;

  padding: 15px;

  border: 1px solid var(--border);
  border-radius: 5px;
}

#serviceRequestForm fieldset legend {
  display: block;

  margin-right: 4px;
}

#serviceRequestForm fieldset label {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  font-weight: 500;
}

#serviceRequestForm fieldset input {
  width: auto;

  accent-color: var(--blue);
}

.form-actions {
  display: flex;

  justify-content: flex-end;

  gap: 10px;

  margin-top: 2px;
}

.form-status {
  min-height: 20px;

  margin: 0;

  color: var(--blue);

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


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1100px) {

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

  .desktop-nav {
    gap: 24px;
  }

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

  .hero-network {
    right: -4%;
    width: 470px;
    opacity: 0.78;
  }

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

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

  .section-heading {
    gap: 38px;
  }

  .footer-grid {
    gap: 30px;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .process-layout {
    grid-template-columns:
      210px
      minmax(0, 1fr);

    column-gap: 35px;
  }

  .process-heading h2 {
    font-size: 32px;
  }

  .process-step {
    padding: 0 15px;
  }

  .step-content {
    max-width: 145px;
  }

  .process-step h3 {
    font-size: 15px;
  }

  .process-step p {
    font-size: 11.5px;
  }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 800px) {

  .container {
    width: min(
      var(--max-width),
      calc(100% - 32px)
    );
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero {
    min-height: 640px;
  }

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

    min-height: 565px;
  }

  .hero-content {
    position: relative;
    z-index: 3;

    padding:
      70px
      0
      115px;
  }

  .hero-network {
    right: -70px;

    top: 67%;

    width: 430px;

    opacity: 0.38;
  }

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

  .trust-item {
    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;

    gap: 17px;
  }

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

  .process-layout {
    grid-template-columns: 1fr 1fr;
  }

  .process-heading {
    grid-column: 1 / -1;
  }

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

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

  .contact-info > div {
    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }

  .contact-info > div:last-child {
    border-bottom: 0;
  }

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

  .footer-company {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   MOBILE PROCESS
========================================================= */

@media (max-width: 700px) {

  .process-section {
    padding: 54px 0;
  }

  .process-layout {
    display: block;
  }

  .process-heading {
    margin-bottom: 40px;
  }

  .process-heading h2 {
    font-size: 31px;
  }

  .process-flow {
    display: flex;

    flex-direction: column;

    gap: 0;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {

    position: relative;

    min-height: 112px;

    display: grid;

    grid-template-columns:
      54px
      minmax(0, 1fr);

    column-gap: 15px;

    padding: 0;
  }

  .step-icon {
    grid-column: 1;
    grid-row: 1 / span 3;

    width: 44px;
    height: 44px;

    margin: 0;

    font-size: 12px;
  }

  .step-content {
    grid-column: 2;

    max-width: none;
  }

  .step-number {
    margin-bottom: 4px;

    font-size: 11px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .process-step p {
    max-width: 320px;

    font-size: 12px;
  }

  .process-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 48px;
    left: 21px;

    width: 1px;
    height: 64px;

    background:
      repeating-linear-gradient(
        to bottom,
        rgba(91, 140, 255, 0.30) 0,
        rgba(91, 140, 255, 0.30) 2px,
        transparent 2px,
        transparent 8px
      );
  }

  .process-step:not(:last-child)::before {
    content: "";
  }
}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 560px) {

  .container {
    width: calc(100% - 28px);
  }

  body {
    font-size: 14px;
  }

  .header-inner {
    height: 64px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;

    font-size: 12px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero {
    min-height: 670px;

    padding-top: 64px;
  }

  .hero-grid {
    min-height: 606px;
  }

  .hero-content {
    padding:
      62px
      0
      120px;
  }

  h1 {
    font-size:
      clamp(
        40px,
        11vw,
        50px
      );
  }

  .hero-description {
    font-size: 15px;

    line-height: 1.65;
  }

  .hero-actions {
    display: grid;

    grid-template-columns: 1fr;

    max-width: 320px;

    gap: 10px;
  }

  .button {
    min-height: 47px;

    font-size: 13px;
  }

  .hero-tags {
    gap: 13px 18px;

    font-size: 12px;
  }

  .hero-network {
    right: -125px;

    top: 73%;

    width: 400px;

    opacity: 0.34;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .trust-item {
    min-height: 82px;

    padding: 16px 17px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .trust-item strong {
    font-size: 12px;
  }

  .trust-item small {
    font-size: 10.5px;
  }

  .services-section {
    padding:
      52px
      0
      60px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading > p {
    font-size: 13px;
  }

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

    gap: 13px;
  }

  .service-card {
    min-height: 0;

    padding: 19px;
  }

  .service-icon {
    width: 46px;
    height: 46px;

    font-size: 21px;
  }

  .service-card h3 {
    min-height: 0;

    font-size: 17px;
  }

  .service-card > strong {
    min-height: 0;

    font-size: 12px;
  }

  .service-card p {
    min-height: 0;

    font-size: 12px;
  }

  .learn-more {
    font-size: 12px;
  }

  .contact-section {
    padding:
      50px
      0
      38px;
  }

  .contact-top h2 {
    font-size: 30px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-card strong {
    font-size: 12px;
  }

  .contact-card small {
    font-size: 10.5px;
  }

  .contact-card a {
    font-size: 11px;
  }

  .contact-info > div {
    padding: 15px 18px;
  }

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

  .footer-company {
    grid-column: auto;
  }

  .footer-column strong {
    font-size: 12px;
  }

  .footer-column a {
    font-size: 11px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 7px;

    font-size: 10px;
  }


  /* ---------------------------------------------------------
     MODAL MOBILE
  --------------------------------------------------------- */

  .modal {
    padding: 9px;
  }

  .modal-dialog {
    width: 100%;

    max-height:
      calc(100vh - 18px);

    padding:
      27px
      19px;
  }

  .modal-dialog h2 {
    padding-right: 44px;

    font-size: 28px;
  }

  .modal-description {
    font-size: 13px;
  }

  #serviceRequestForm {
    gap: 15px;
  }

  #serviceRequestForm label,
  #serviceRequestForm legend {
    font-size: 12px;
  }

  #serviceRequestForm input,
  #serviceRequestForm select,
  #serviceRequestForm textarea {
    padding:
      12px
      13px;

    font-size: 13px;
  }

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

  #serviceRequestForm fieldset {
    align-items: flex-start;

    flex-direction: column;

    gap: 10px;
  }

  .form-actions {
    flex-direction: column-reverse;

    gap: 9px;
  }

  .form-actions .button {
    width: 100%;
  }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-network {
    right: -155px;
  }

  .service-card {
    padding: 17px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .process-heading h2 {
    font-size: 28px;
  }

  .process-step h3 {
    font-size: 15px;
  }

  .modal-dialog {
    padding:
      24px
      16px;
  }

  .modal-dialog h2 {
    font-size: 26px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

  html {
    scroll-behavior: auto;
  }

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

/* =========================================================
   GET A QUOTE PAGE
   Quote-page-specific styles
========================================================= */


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

.quote-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  background:
    rgba(4, 13, 30, 0.96);

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

  backdrop-filter: blur(10px);
}


/* =========================================================
   PAGE BACKGROUND
========================================================= */

.quote-page {
  min-height: 100vh;

  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #f5f8fc 0%,
      #ffffff 42%,
      #f4f7fb 100%
    );
}


/* =========================================================
   QUOTE INTRO
========================================================= */

.quote-intro {
  position: relative;

  overflow: hidden;

  padding:
    78px
    0
    48px;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(47, 109, 246, 0.08),
      transparent 30%
    );
}


/* subtle background dots */

.quote-intro::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 42%;
  height: 100%;

  background-image:
    radial-gradient(
      rgba(47, 109, 246, 0.18) 1px,
      transparent 1px
    );

  background-size: 28px 28px;

  opacity: 0.22;

  pointer-events: none;
}

.quote-intro .container {
  position: relative;

  z-index: 2;
}

.quote-intro .eyebrow {
  margin-bottom: 15px;

  color: var(--blue);
}

.quote-intro h1 {
  max-width: 720px;

  margin: 0 0 18px;

  color: #101a2c;

  font-size:
    clamp(
      42px,
      5vw,
      64px
    );
}

.quote-intro h1 span {
  color: var(--blue);
}

.quote-intro-text {
  max-width: 580px;

  margin: 0;

  color: #657085;

  font-size:
    clamp(
      15px,
      1.25vw,
      18px
    );

  line-height: 1.65;
}


/* =========================================================
   QUOTE FORM SECTION
========================================================= */

.quote-form-section {
  position: relative;

  padding:
    15px
    0
    85px;
}

.quote-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(280px, 0.65fr);

  align-items: start;

  gap: 42px;
}


/* =========================================================
   FORM CARD
========================================================= */

.quote-form-card {
  padding: 36px;

  border:
    1px solid #dce3ed;

  border-radius: 10px;

  background: #ffffff;

  box-shadow:
    0 14px 40px
      rgba(20, 39, 69, 0.07);
}


/* =========================================================
   FORM HEADING
========================================================= */

.quote-form-heading {
  margin-bottom: 28px;

  padding-bottom: 23px;

  border-bottom:
    1px solid #e4e9f0;
}

.quote-form-label {
  display: block;

  margin-bottom: 9px;

  color: var(--blue);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.quote-form-heading h2 {
  margin: 0 0 9px;

  color: #101a2c;

  font-size:
    clamp(
      28px,
      3vw,
      38px
    );
}

.quote-form-heading p {
  max-width: 520px;

  margin: 0;

  color: #657085;

  font-size: 13px;

  line-height: 1.65;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.quote-form-card #quoteForm {
  display: grid;

  gap: 18px;
}

.quote-form-card #quoteForm label {
  display: grid;

  gap: 7px;

  color: #1b2638;

  font-size: 12px;

  font-weight: 700;
}

.quote-form-card #quoteForm label > span {
  display: block;
}

.quote-form-card #quoteForm label b {
  color: #d14a4a;

  font-weight: 700;
}

.quote-form-card .form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 16px;
}

.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea {
  width: 100%;

  padding:
    13px
    14px;

  border:
    1px solid #d9e1eb;

  border-radius: 5px;

  background: #ffffff;

  color: #101a2c;

  font-size: 13px;

  line-height: 1.4;

  outline: none;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.quote-form-card input::placeholder,
.quote-form-card textarea::placeholder {
  color: #9aa5b5;
}

.quote-form-card input:hover,
.quote-form-card select:hover,
.quote-form-card textarea:hover {
  border-color: #bcc8d8;
}

.quote-form-card input:focus,
.quote-form-card select:focus,
.quote-form-card textarea:focus {
  border-color: var(--blue);

  background: #ffffff;

  box-shadow:
    0 0 0 3px
      rgba(47, 109, 246, 0.10);
}

.quote-form-card textarea {
  min-height: 125px;

  resize: vertical;
}


/* =========================================================
   SUPPORT TYPE
========================================================= */

.quote-form-card fieldset {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin: 0;

  padding:
    16px
    17px;

  border:
    1px solid #d9e1eb;

  border-radius: 5px;

  background: #fbfcfe;
}

.quote-form-card fieldset legend {
  margin-right: 6px;

  color: #1b2638;

  font-size: 12px;

  font-weight: 700;
}

.quote-form-card fieldset label {
  display: inline-flex !important;

  grid-template-columns: none !important;

  align-items: center;

  gap: 7px;

  color: #4f5d70 !important;

  font-size: 12px !important;

  font-weight: 500 !important;
}

.quote-form-card fieldset input {
  width: auto;

  margin: 0;

  accent-color: var(--blue);
}


/* =========================================================
   FORM STATUS
========================================================= */

.quote-form-card .form-status {
  min-height: 20px;

  margin: -2px 0 0;

  color: var(--blue);

  font-size: 12px;

  line-height: 1.5;
}


/* =========================================================
   FORM ACTIONS
========================================================= */

.quote-form-card .form-actions {
  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 10px;

  margin-top: 2px;
}

.quote-form-card .form-actions .button {
  min-height: 47px;

  padding:
    0 23px;
}


/* =========================================================
   FORM NOTE
========================================================= */

.quote-form-note {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-top: 22px;

  padding-top: 18px;

  border-top:
    1px solid #e4e9f0;

  color: #69768a;

  font-size: 11px;

  line-height: 1.5;
}

.quote-form-note span {
  width: 20px;
  height: 20px;

  flex: 0 0 20px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: #edf3ff;

  color: var(--blue);

  font-size: 11px;

  font-weight: 800;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.quote-side {
  position: sticky;

  top: 98px;

  display: flex;

  flex-direction: column;

  gap: 22px;
}


/* =========================================================
   SIDE INTRO
========================================================= */

.quote-side-block {
  padding:
    7px
    2px
    12px;
}

.quote-side-block .eyebrow {
  margin-bottom: 12px;
}

.quote-side-block h2 {
  margin: 0 0 13px;

  color: #101a2c;

  font-size:
    clamp(
      30px,
      3vw,
      40px
    );
}

.quote-side-block h2 span {
  color: var(--blue);
}

.quote-side-block > p:last-child {
  max-width: 350px;

  margin: 0;

  color: #657085;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   MINI PROCESS
========================================================= */

.quote-mini-steps {
  overflow: hidden;

  border:
    1px solid #dce3ed;

  border-radius: 9px;

  background: #ffffff;

  box-shadow:
    0 7px 22px
      rgba(20, 39, 69, 0.045);
}

.quote-mini-step {
  display: grid;

  grid-template-columns: 43px 1fr;

  gap: 13px;

  padding:
    17px
    18px;

  border-bottom:
    1px solid #e4e9f0;
}

.quote-mini-step:last-child {
  border-bottom: 0;
}

.quote-mini-step > span {
  width: 35px;
  height: 35px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--blue-soft);

  color: var(--blue);

  font-size: 10px;

  font-weight: 800;
}

.quote-mini-step strong {
  display: block;

  margin-bottom: 3px;

  color: #172237;

  font-size: 12px;

  line-height: 1.4;
}

.quote-mini-step small {
  display: block;

  color: #738096;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================================
   CONTACT BOX
========================================================= */

.quote-contact-box {
  padding: 21px;

  border:
    1px solid #dce3ed;

  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      #f8fbff,
      #eef4ff
    );
}

.quote-contact-box > strong {
  display: block;

  margin-bottom: 6px;

  color: #172237;

  font-size: 13px;
}

.quote-contact-box > p {
  margin: 0 0 16px;

  color: #657085;

  font-size: 11px;

  line-height: 1.6;
}

.quote-contact-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}

.quote-contact-actions .button {
  min-height: 42px;

  padding:
    0 17px;

  font-size: 11px;
}


/* =========================================================
   QUOTE PAGE FOOTER
========================================================= */

.quote-page + .site-footer {
  margin-top: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .quote-intro {
    padding:
      70px
      0
      42px;
  }

  .quote-layout {
    grid-template-columns:
      minmax(0, 1.25fr)
      minmax(270px, 0.75fr);

    gap: 30px;
  }

  .quote-form-card {
    padding: 30px;
  }

  .quote-side {
    top: 90px;
  }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 820px) {

  .quote-intro {
    padding:
      62px
      0
      35px;
  }

  .quote-layout {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .quote-side {
    position: static;

    display: grid;

    grid-template-columns:
      1fr 1fr;

    align-items: start;
  }

  .quote-side-block {
    grid-column: 1 / -1;
  }

  .quote-contact-box {
    align-self: stretch;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .quote-page {
    padding-top: 64px;
  }

  .quote-header .header-inner {
    height: 64px;
  }

  .quote-intro {
    padding:
      53px
      0
      32px;
  }

  .quote-intro::after {
    width: 65%;

    opacity: 0.14;
  }

  .quote-intro h1 {
    margin-bottom: 15px;

    font-size:
      clamp(
        38px,
        11vw,
        48px
      );
  }

  .quote-intro-text {
    font-size: 14px;

    line-height: 1.65;
  }

  .quote-form-section {
    padding:
      8px
      0
      58px;
  }

  .quote-form-card {
    padding:
      24px
      18px;

    border-radius: 8px;
  }

  .quote-form-heading {
    margin-bottom: 23px;

    padding-bottom: 20px;
  }

  .quote-form-heading h2 {
    font-size: 29px;
  }

  .quote-form-heading p {
    font-size: 12px;
  }

  .quote-form-card .form-grid {
    grid-template-columns: 1fr;

    gap: 17px;
  }

  .quote-form-card #quoteForm {
    gap: 17px;
  }

  .quote-form-card input,
  .quote-form-card select,
  .quote-form-card textarea {
    padding:
      12px
      13px;

    font-size: 13px;
  }

  .quote-form-card textarea {
    min-height: 120px;
  }

  .quote-form-card fieldset {
    align-items: flex-start;

    flex-direction: column;

    gap: 11px;
  }

  .quote-form-card .form-actions {
    flex-direction: column-reverse;

    gap: 9px;
  }

  .quote-form-card .form-actions .button {
    width: 100%;
  }

  .quote-form-note {
    align-items: flex-start;

    font-size: 10.5px;
  }


  /* Side */

  .quote-side {
    display: flex;

    gap: 18px;
  }

  .quote-side-block {
    padding: 0;
  }

  .quote-side-block h2 {
    font-size: 30px;
  }

  .quote-side-block > p:last-child {
    font-size: 12px;
  }

  .quote-mini-step {
    grid-template-columns:
      40px
      1fr;

    padding:
      15px
      16px;
  }

  .quote-mini-step > span {
    width: 34px;
    height: 34px;
  }

  .quote-mini-step strong {
    font-size: 12px;
  }

  .quote-mini-step small {
    font-size: 10.5px;
  }

  .quote-contact-box {
    padding: 19px;
  }

  .quote-contact-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;
  }

  .quote-contact-actions .button {
    width: 100%;
  }
}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 380px) {

  .quote-intro {
    padding-top: 47px;
  }

  .quote-intro h1 {
    font-size: 37px;
  }

  .quote-form-card {
    padding:
      22px
      15px;
  }

  .quote-form-heading h2 {
    font-size: 27px;
  }

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

}
/* =========================================================
   ABOUT US PAGE
   About-page-specific styles
========================================================= */


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

.about-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  background:
    rgba(4, 13, 30, 0.96);

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

  backdrop-filter: blur(10px);
}


/* =========================================================
   PAGE
========================================================= */

.about-page {
  min-height: 100vh;

  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #f5f8fc 0%,
      #ffffff 38%,
      #f4f7fb 100%
    );
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
  position: relative;

  overflow: hidden;

  padding:
    82px
    0
    62px;

  background:
    radial-gradient(
      circle at 82% 38%,
      rgba(47, 109, 246, 0.10),
      transparent 31%
    );
}

.about-intro::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 40%;
  height: 100%;

  background-image:
    radial-gradient(
      rgba(47, 109, 246, 0.18) 1px,
      transparent 1px
    );

  background-size: 29px 29px;

  opacity: 0.22;

  pointer-events: none;
}

.about-intro .container {
  position: relative;

  z-index: 2;
}

.about-intro .eyebrow {
  color: var(--blue);

  margin-bottom: 15px;
}

.about-intro h1 {
  max-width: 820px;

  margin: 0 0 20px;

  color: #101a2c;

  font-size:
    clamp(
      43px,
      5vw,
      65px
    );

  line-height: 1.08;
}

.about-intro h1 span {
  display: block;

  color: var(--blue);
}

.about-intro-text {
  max-width: 650px;

  margin: 0;

  color: #657085;

  font-size:
    clamp(
      15px,
      1.25vw,
      18px
    );

  line-height: 1.7;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.about-who {
  padding:
    68px
    0
    72px;

  background: #ffffff;

  border-top:
    1px solid #e8edf3;

  border-bottom:
    1px solid #e8edf3;
}

.about-two-column {
  display: grid;

  grid-template-columns:
    minmax(270px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 85px;

  align-items: start;
}

.about-section-heading {
  position: sticky;

  top: 105px;
}

.about-section-heading .eyebrow {
  margin-bottom: 14px;
}

.about-section-heading h2 {
  max-width: 410px;

  margin: 0;

  color: #101a2c;

  font-size:
    clamp(
      32px,
      3.2vw,
      43px
    );
}

.about-section-heading h2 span {
  color: var(--blue);
}

.about-section-content {
  max-width: 650px;
}

.about-section-content p {
  margin: 0 0 18px;

  color: #536074;

  font-size: 14px;

  line-height: 1.8;
}

.about-section-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CENTERED HEADINGS
========================================================= */

.about-centered-heading {
  max-width: 680px;

  margin: 0 auto 38px;

  text-align: center;
}

.about-centered-heading .eyebrow {
  margin-bottom: 13px;
}

.about-centered-heading h2 {
  margin: 0 0 13px;

  color: #101a2c;

  font-size:
    clamp(
      32px,
      3.2vw,
      43px
    );
}

.about-centered-heading h2 span {
  color: var(--blue);
}

.about-centered-heading > p:last-child {
  max-width: 600px;

  margin: 0 auto;

  color: #657085;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   WHAT WE SUPPORT
========================================================= */

.about-support {
  padding:
    72px
    0
    80px;

  background:
    #f4f7fb;
}

.about-support-grid {
  display: grid;

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

  gap: 15px;
}

.about-support-card {
  min-height: 205px;

  padding: 21px;

  border:
    1px solid #dce3ed;

  border-radius: 8px;

  background: #ffffff;

  box-shadow:
    0 5px 18px
      rgba(20, 39, 69, 0.035);

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.about-support-card:hover {
  transform: translateY(-3px);

  border-color: #b9cdf7;

  box-shadow:
    0 12px 27px
      rgba(20, 39, 69, 0.08);
}

.about-support-icon {
  width: 44px;
  height: 44px;

  display: grid;

  place-items: center;

  margin-bottom: 18px;

  border-radius: 8px;

  background: var(--blue-soft);

  color: var(--blue);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.5px;
}

.about-support-card h3 {
  margin: 0 0 8px;

  color: #172237;

  font-size: 16px;

  line-height: 1.3;
}

.about-support-card p {
  margin: 0;

  color: #657085;

  font-size: 12px;

  line-height: 1.65;
}


/* =========================================================
   OUR APPROACH
========================================================= */

.about-approach {
  padding:
    70px
    0
    74px;

  background: #071329;

  color: #ffffff;
}

.about-approach-heading {
  margin-bottom: 42px;
}

.about-approach-heading .eyebrow {
  color: #70a0ff;

  margin-bottom: 13px;
}

.about-approach-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(
      33px,
      3.2vw,
      43px
    );
}

.about-approach-heading h2 span {
  color: #5b8cff;
}


/* =========================================================
   APPROACH FLOW
========================================================= */

.about-approach-flow {
  display: grid;

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

  gap: 0;
}

.about-approach-step {
  position: relative;

  min-height: 150px;

  padding:
    0
    28px;

  border-left:
    1px solid rgba(
      255,
      255,
      255,
      0.12
    );
}

.about-approach-step:first-child {
  padding-left: 0;

  border-left: 0;
}

.about-approach-step:last-child {
  padding-right: 0;
}

.about-approach-number {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  margin-bottom: 17px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #4380ff,
      #2d65e5
    );

  color: #ffffff;

  font-size: 12px;

  font-weight: 800;

  box-shadow:
    0 0 0 6px
      rgba(47, 109, 246, 0.08);
}

.about-approach-step h3 {
  margin: 0 0 7px;

  color: #ffffff;

  font-size: 16px;
}

.about-approach-step p {
  max-width: 210px;

  margin: 0;

  color: #b8c5d8;

  font-size: 12px;

  line-height: 1.65;
}


/* =========================================================
   OUR TEAM
========================================================= */

.about-team {
  padding:
    76px
    0
    82px;

  background: #ffffff;
}


/* =========================================================
   TEAM GRID
========================================================= */

.team-grid {
  display: grid;

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

  gap: 17px;
}


/* =========================================================
   TEAM CARD
========================================================= */

.team-card {
  overflow: hidden;

  border:
    1px solid #dce3ed;

  border-radius: 9px;

  background: #ffffff;

  box-shadow:
    0 5px 18px
      rgba(20, 39, 69, 0.035);

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

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

  border-color: #b9cdf7;

  box-shadow:
    0 13px 30px
      rgba(20, 39, 69, 0.09);
}


/* =========================================================
   TEAM IMAGE
========================================================= */

.team-image {
  position: relative;

  width: 100%;

  aspect-ratio: 1 / 1.02;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #eef4ff,
      #dfe9fa
    );
}

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

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(7, 19, 41, 0.08)
    );

  pointer-events: none;
}

.team-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.25s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.025);
}


/* =========================================================
   TEAM CONTENT
========================================================= */

.team-content {
  position: relative;

  padding: 20px 19px 21px;
}

.team-number {
  display: block;

  margin-bottom: 7px;

  color: var(--blue);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.6px;
}

.team-content h3 {
  margin: 0 0 5px;

  color: #172237;

  font-size: 18px;

  line-height: 1.25;
}

.team-content > strong {
  display: block;

  min-height: 34px;

  color: var(--blue);

  font-size: 11px;

  font-weight: 700;

  line-height: 1.5;
}

.team-content p {
  margin: 10px 0 0;

  color: #657085;

  font-size: 11px;

  line-height: 1.65;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
  padding:
    52px
    0;

  background:
    linear-gradient(
      110deg,
      #edf3ff,
      #f7faff
    );

  border-top:
    1px solid #dce6f5;
}

.about-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.about-cta .eyebrow {
  margin-bottom: 11px;
}

.about-cta h2 {
  margin: 0 0 9px;

  color: #101a2c;

  font-size:
    clamp(
      30px,
      3vw,
      40px
    );
}

.about-cta h2 span {
  color: var(--blue);
}

.about-cta p:not(.eyebrow) {
  margin: 0;

  color: #657085;

  font-size: 13px;

  line-height: 1.6;
}

.about-cta-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  flex-shrink: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .about-two-column {
    gap: 55px;
  }

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

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

    gap: 18px;
  }

  .about-approach-step {
    padding:
      0
      20px;
  }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 820px) {

  .about-page {
    padding-top: 64px;
  }

  .about-header .header-inner {
    height: 64px;
  }

  .about-intro {
    padding:
      65px
      0
      48px;
  }

  .about-two-column {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .about-section-heading {
    position: static;
  }

  .about-section-heading h2 {
    max-width: 600px;
  }

  .about-approach-flow {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    row-gap: 38px;
  }

  .about-approach-step:nth-child(3) {
    border-left: 0;

    padding-left: 0;
  }

  .about-approach-step {
    min-height: 145px;
  }

  .about-cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .about-intro {
    padding:
      54px
      0
      38px;
  }

  .about-intro::after {
    width: 65%;

    opacity: 0.14;
  }

  .about-intro h1 {
    margin-bottom: 16px;

    font-size:
      clamp(
        38px,
        11vw,
        49px
      );
  }

  .about-intro h1 span {
    display: inline;
  }

  .about-intro-text {
    font-size: 14px;

    line-height: 1.65;
  }


  /* Who we are */

  .about-who {
    padding:
      52px
      0
      55px;
  }

  .about-section-heading h2 {
    font-size: 30px;
  }

  .about-section-content p {
    font-size: 13px;

    line-height: 1.75;
  }


  /* Support */

  .about-support {
    padding:
      55px
      0
      60px;
  }

  .about-centered-heading {
    margin-bottom: 30px;
  }

  .about-centered-heading h2 {
    font-size: 30px;
  }

  .about-centered-heading > p:last-child {
    font-size: 12px;
  }

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

    gap: 12px;
  }

  .about-support-card {
    min-height: 0;

    padding: 19px;
  }

  .about-support-card h3 {
    font-size: 16px;
  }

  .about-support-card p {
    font-size: 12px;
  }


  /* Approach */

  .about-approach {
    padding:
      55px
      0
      60px;
  }

  .about-approach-heading {
    margin-bottom: 34px;
  }

  .about-approach-heading h2 {
    font-size: 30px;
  }

  .about-approach-flow {
    display: flex;

    flex-direction: column;

    gap: 0;
  }

  .about-approach-step,
  .about-approach-step:first-child,
  .about-approach-step:last-child {

    min-height: 108px;

    display: grid;

    grid-template-columns:
      52px
      minmax(0, 1fr);

    column-gap: 15px;

    padding:
      0
      0
      26px;

    border-left: 0;
  }

  .about-approach-step:last-child {
    padding-bottom: 0;
  }

  .about-approach-number {
    width: 44px;
    height: 44px;

    margin: 0;

    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .about-approach-step h3 {
    font-size: 15px;
  }

  .about-approach-step p {
    max-width: 310px;

    font-size: 11.5px;
  }

  .about-approach-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 48px;
    left: 21px;

    width: 1px;
    height: 60px;

    background:
      repeating-linear-gradient(
        to bottom,
        rgba(91, 140, 255, 0.3) 0,
        rgba(91, 140, 255, 0.3) 2px,
        transparent 2px,
        transparent 8px
      );
  }


  /* Team */

  .about-team {
    padding:
      58px
      0
      62px;
  }

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

    gap: 15px;
  }

  .team-image {
    aspect-ratio: 1 / 0.9;
  }

  .team-content {
    padding:
      18px
      17px
      20px;
  }

  .team-content h3 {
    font-size: 17px;
  }

  .team-content > strong {
    min-height: 0;

    font-size: 11px;
  }

  .team-content p {
    font-size: 11px;
  }


  /* CTA */

  .about-cta {
    padding:
      45px
      0;
  }

  .about-cta-inner {
    gap: 25px;
  }

  .about-cta h2 {
    font-size: 30px;
  }

  .about-cta p:not(.eyebrow) {
    font-size: 12px;
  }

  .about-cta-actions {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;

    gap: 9px;
  }

  .about-cta-actions .button {
    width: 100%;
  }

}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 360px) {

  .about-intro h1 {
    font-size: 36px;
  }

  .about-section-heading h2,
  .about-centered-heading h2,
  .about-approach-heading h2,
  .about-cta h2 {
    font-size: 28px;
  }

  .about-support-card {
    padding: 17px;
  }

  .team-content {
    padding:
      17px
      16px
      19px;
  }

}
/* =========================================================
   SERVICE FORM - TICKET CONFIRMATION
========================================================= */

#formStatus {
  width: 100%;
  margin-top: 16px;
}


/* -------------------------
   Success
-------------------------- */

#formStatus .ticket-success {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 9px;

  margin-top: 6px;
  padding: 22px 20px;

  border: 1px solid #cfe0ff;
  border-radius: 8px;

  background: #f5f8ff;

  color: #536074;

  text-align: center;
  line-height: 1.55;
}


/* Success icon */

#formStatus .ticket-success::before {
  content: "✓";

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  margin-bottom: 4px;

  border-radius: 50%;

  background: #e8f0ff;

  color: #2f6df6;

  font-size: 19px;
  font-weight: 800;
}


/* Main confirmation */

#formStatus .ticket-success > strong:first-child {
  color: #15223a;

  font-size: 16px;
  font-weight: 750;
}


/* Reference label */

#formStatus .ticket-success > span {
  max-width: 430px;

  color: #657085;

  font-size: 12px;
}


/* Reference number */

#formStatus .ticket-success .ticket-number {
  display: inline-block;

  margin: 1px 0 3px;

  padding: 8px 14px;

  border: 1px solid #cbdcff;
  border-radius: 5px;

  background: #ffffff;

  color: #2f6df6;

  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.4px;
}


/* -------------------------
   Error
-------------------------- */

#formStatus .ticket-error {
  margin-top: 6px;
  padding: 14px 16px;

  border: 1px solid #ead6d6;
  border-radius: 6px;

  background: #fff8f8;

  color: #6f5555;

  font-size: 12px;

  line-height: 1.6;

  text-align: center;
}


#formStatus .ticket-error a {
  color: #2f6df6;

  font-weight: 700;

  text-decoration: underline;
}

#formStatus .ticket-error a:hover {
  color: #1e56cf;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  #formStatus .ticket-success {
    padding: 20px 15px;

    gap: 8px;
  }

  #formStatus .ticket-success::before {
    width: 38px;
    height: 38px;

    font-size: 17px;
  }

  #formStatus .ticket-success > strong:first-child {
    font-size: 14px;
  }

  #formStatus .ticket-success > span {
    font-size: 11px;
  }

  #formStatus .ticket-success .ticket-number {
    padding: 7px 11px;

    font-size: 12px;
  }

  #formStatus .ticket-error {
    font-size: 11px;
  }

}

