:root {
  --navy: #061a3a;
  --navy2: #08295b;
  --blue: #0d7fe8;
  --cyan: #12c6ee;
  --orange: #ff7a1a;
  --yellow: #f6c54a;

  --ink: #102445;
  --muted: #61718d;
  --soft: #f3f7fc;
  --line: #dce6f2;
  --white: #fff;

  --shadow: 0 18px 50px rgba(10, 36, 78, 0.14);
}

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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #edf3fa;
  line-height: 1.75;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 82px;
  background: rgba(5, 21, 48, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
  /*
    The site is Hebrew / RTL.
    Keep the header direction explicit so the logo
    stays on the RIGHT and navigation follows it.
  */
  direction: rtl;
}

/* LOGO */

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 175px;
  height: 72px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 175px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 0;
  background: transparent;
  filter: none;
}

/* NAVIGATION */

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 28px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* PHONE */

.phone-pill {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 11px 22px;

  border-radius: 40px;

  color: #fff;

  background: linear-gradient(135deg, var(--blue), var(--cyan));

  font-weight: 800;

  white-space: nowrap;

  box-shadow: 0 10px 28px rgba(18, 198, 238, 0.25);
}

/* MOBILE MENU BUTTON */

.menu-btn {
  display: none;

  border: 0;
  background: transparent;

  color: #fff;

  font-size: 1.8rem;

  cursor: pointer;
}

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

.hero {
  min-height: 730px;
  padding-top: 130px;
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 30% 30%, #0b4088 0, transparent 32%),
    linear-gradient(135deg, #03142f 0%, #062456 55%, #041634 100%);

  overflow: hidden;
}

.hero::after {
  content: "";

  position: absolute;

  inset: auto 0 0;

  height: 95px;

  background: linear-gradient(to bottom, transparent, #edf3fa);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;

  opacity: 0.14;

  background-image:
    linear-gradient(rgba(80, 180, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 180, 255, 0.22) 1px, transparent 1px);

  background-size: 55px 55px;

  mask-image: linear-gradient(to left, black, transparent 68%);
}

.hero-orbits span {
  position: absolute;

  border: 1px solid rgba(0, 194, 255, 0.28);

  border-radius: 50%;

  transform: rotate(-15deg);
}

.hero-orbits span:nth-child(1) {
  width: 850px;
  height: 360px;

  left: -220px;
  bottom: 40px;
}

.hero-orbits span:nth-child(2) {
  width: 700px;
  height: 280px;

  left: -120px;
  bottom: 85px;
}

.hero-orbits span:nth-child(3) {
  width: 560px;
  height: 210px;

  left: -40px;
  bottom: 130px;

  border-color: rgba(255, 122, 26, 0.35);
}

.hero-inner {
  display: grid;

  grid-template-columns: 1.02fr 0.98fr;

  align-items: center;

  gap: 60px;

  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--cyan);

  font-weight: 800;
  font-size: 0.9rem;

  letter-spacing: 0.2px;

  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";

  width: 26px;
  height: 3px;

  border-radius: 10px;

  background: var(--orange);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.1rem);

  line-height: 1.08;

  margin-bottom: 24px;

  letter-spacing: -1px;

  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--cyan), #8ddcff, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy>p {
  font-size: 1.2rem;
  color: #d7e6f8;
  max-width: 690px;
  margin-bottom: 25px;
}

.hero-points {
  display: flex;

  flex-wrap: wrap;

  gap: 12px 24px;

  color: #d9edff;

  font-size: 0.95rem;

  margin-bottom: 30px;
}

.hero-points span::first-letter {
  color: var(--cyan);
}

.hero-actions {
  display: flex;

  gap: 14px;

  align-items: center;
}

.primary-btn,
.ghost-btn {
  padding: 14px 28px;

  border-radius: 40px;

  /*font-weight: 800;*/

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

  gap: 14px;

  transition: 0.25s;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blue), var(--cyan));

  box-shadow: 0 14px 35px rgba(18, 198, 238, 0.28);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);

  background: rgba(255, 255, 255, 0.05);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-3px);
}

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

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

  display: grid;

  place-items: center;
}

.server-stage {
  position: relative;

  width: 100%;
  height: 430px;

  border-radius: 36px;

  background: linear-gradient(145deg,
      rgba(9, 34, 75, 0.98),
      rgba(6, 17, 44, 0.76));

  border: 1px solid rgba(112, 196, 255, 0.22);

  box-shadow:
    inset 0 0 55px rgba(12, 126, 232, 0.16),
    0 30px 80px rgba(0, 0, 0, 0.35);

  overflow: hidden;

  perspective: 900px;
}

.server-stage::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      transparent,
      rgba(16, 170, 255, 0.12),
      transparent);

  transform: skewX(-18deg);
}

.rack {
  position: absolute;

  bottom: 45px;

  width: 112px;
  height: 305px;

  border: 2px solid #164a81;

  border-radius: 12px;

  background: linear-gradient(90deg, #06162f, #0b2b57, #051329);

  box-shadow:
    0 0 30px rgba(0, 153, 255, 0.18),
    inset 0 0 14px #000;
}

.rack b {
  display: block;

  height: 18px;

  background: #0d74c8;

  border-radius: 8px 8px 2px 2px;

  margin: 9px;
}

.rack i {
  display: block;

  height: 38px;

  margin: 9px;

  border-radius: 5px;

  background: linear-gradient(90deg, #071324, #0c315d);

  border: 1px solid #174a7e;

  position: relative;
}

.rack i::before,
.rack i::after {
  content: "";

  position: absolute;

  top: 14px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  box-shadow: 0 0 10px currentColor;
}

.rack i::before {
  right: 10px;

  color: var(--cyan);

  background: currentColor;
}

.rack i::after {
  right: 25px;

  color: var(--orange);

  background: currentColor;
}

.rack-a {
  left: 8%;

  transform: rotateY(8deg);
}

.rack-b {
  left: 36%;

  width: 125px;
  height: 335px;
}

.rack-c {
  left: 68%;

  transform: rotateY(-8deg);
}

.cloud-node {
  position: absolute;

  top: 28px;
  right: 26px;

  padding: 15px 20px;

  border-radius: 18px;

  background: rgba(8, 58, 112, 0.78);

  border: 1px solid rgba(75, 200, 255, 0.35);

  font-size: 2.1rem;

  color: var(--cyan);

  box-shadow: 0 0 30px rgba(18, 198, 238, 0.2);
}

.cloud-node small {
  display: block;

  color: #fff;

  font-size: 0.65rem;
}

.data-lines {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
}

.data-lines path {
  fill: none;

  stroke: var(--cyan);

  stroke-width: 2;

  opacity: 0.7;
}

.data-lines path:nth-child(2) {
  stroke: var(--orange);

  opacity: 0.75;
}

.data-lines circle {
  fill: var(--cyan);

  filter: drop-shadow(0 0 7px var(--cyan));
}

/* =========================================================
   QUICK STRIP
   ========================================================= */

.quick-strip {
  position: relative;
  z-index: 5;

  margin-top: 38px;

  padding: 25px 34px;

  background: #fff;

  border-radius: 24px;

  box-shadow: var(--shadow);

  display: grid;

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

  color: var(--ink);
}

.quick-strip article {
  display: flex;

  gap: 18px;

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

  padding: 8px 22px;

  border-left: 1px solid var(--line);
}

.quick-strip article:last-child {
  border-left: 0;
}

.quick-strip strong,
.quick-strip small {
  display: block;
}

.quick-strip strong {
  font-size: 1.05rem;
}

.quick-strip small {
  color: var(--muted);

  font-size: 0.8rem;
}

.mini-icon {
  font-size: 2rem;

  color: var(--blue);
}

.mini-icon.microsoft {
  color: var(--orange);
}

.mini-icon.cloud {
  color: var(--cyan);
}

/* =========================================================
   PARTNERS
   ========================================================= */

.partners {
  padding: 18px 0 0;
}

.partner-box {
  background: linear-gradient(135deg, #082454, #071c43);

  border-radius: 22px;

  padding: 20px 36px;

  box-shadow: 0 14px 35px rgba(7, 33, 76, 0.18);
}

.partner-title {
  text-align: center;

  color: #cbe6ff;

  /* font-weight: 800;*/

  margin-bottom: 14px;
}

.partner-title span {
  display: inline-block;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--cyan);

  margin: 0 8px;
}

.partner-title span:last-child {
  background: var(--orange);
}

.partner-list {
  display: grid;

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

  align-items: center;

  gap: 20px;
}

.partner-logo {
  height: 56px;

  display: flex;

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

  padding: 6px 10px;

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

.partner-logo:last-child {
  border-left: 0;
}

.partner-logo img {
  display: block;

  width: 100%;

  max-width: 165px;

  height: 42px;

  object-fit: contain;

  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding: 72px 0;
}

.intro {
  padding-bottom: 24px;
}

.center-head {
  text-align: center;
}

.center-head h2,
.process-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);

  line-height: 1.2;

  margin-bottom: 14px;
}

.center-head p {
  max-width: 760px;

  margin: auto;

  color: var(--muted);
}

.eyebrow.orange {
  color: var(--orange);
}

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

.service-grid {
  display: grid;

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

  gap: 22px;
}

.service-card {
  position: relative;

  background: #fff;

  border: 1px solid #e2eaf4;

  border-radius: 22px;

  padding: 28px 24px 24px;

  box-shadow: 0 12px 35px rgba(22, 62, 108, 0.08);

  overflow: hidden;

  transition: 0.3s;
}

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

  box-shadow: 0 20px 45px rgba(22, 62, 108, 0.15);
}

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

  position: absolute;

  inset: 0 auto 0 0;

  width: 3px;

  background: linear-gradient(var(--cyan), var(--blue));

  opacity: 0;

  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.15rem;

  margin: 15px 0 10px;
}

.service-card p {
  color: var(--muted);

  font-size: 0.94rem;
}

.service-card>span {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 56px;
  height: 3px;

  background: var(--blue);
}

.service-card:nth-child(2)>span,
.service-card:nth-child(5)>span {
  background: var(--orange);
}

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

  border-radius: 16px;

  display: grid;
  place-items: center;

  background: linear-gradient(145deg, #e6f4ff, #f8fcff);

  color: var(--blue);

  font-size: 1.85rem;

  border: 1px solid #d8eaff;
}

.service-icon.orange-icon {
  color: var(--orange);

  background: #fff2e8;
}

.service-icon.cyan-icon {
  color: var(--cyan);
}

.service-icon.multi {
  background: linear-gradient(135deg, #4a40ff, #22c9d9, #ff6aa0);

  color: #fff;
}

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

.process-wrap {
  padding: 20px 0 14px;
}

.process-box {
  position: relative;

  background: linear-gradient(135deg, #082553, #06204a);

  color: #fff;

  border-radius: 28px;

  padding: 46px 42px;

  box-shadow: var(--shadow);

  overflow: hidden;
}

.process-box::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border: 1px dashed rgba(56, 183, 255, 0.25);

  border-radius: 50%;

  left: -120px;
  top: -130px;
}

.process-head {
  text-align: center;
}

.eyebrow.light {
  color: #c8eaff;
}

.steps {
  display: grid;

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

  gap: 24px;

  margin-top: 38px;

  position: relative;
}

.steps::before {
  content: "";

  position: absolute;

  top: 60px;

  right: 12%;
  left: 12%;

  height: 1px;

  background: linear-gradient(90deg,
      var(--cyan),
      rgba(255, 255, 255, 0.35),
      var(--orange));
}

.steps article {
  text-align: center;

  position: relative;

  z-index: 2;
}

.step-num {
  font-weight: 900;

  font-size: 1.35rem;

  color: var(--cyan);
}

.orange-txt {
  color: var(--orange);
}

.step-icon {
  width: 72px;
  height: 72px;

  margin: 8px auto 16px;

  border: 1px solid var(--cyan);

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: #082553;

  font-size: 1.7rem;
}

.orange-border {
  border-color: var(--orange);
}

.steps h3 {
  margin-bottom: 7px;
}

.steps p {
  font-size: 0.9rem;

  color: #c9d8eb;
}

/* =========================================================
   STATS
   ========================================================= */

.stats {
  padding: 18px 0 65px;
}

.stats-grid {
  background: #fff;

  border-radius: 22px;

  box-shadow: var(--shadow);

  display: grid;

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

  padding: 24px;
}

.stats article {
  text-align: center;

  padding: 8px 22px;

  border-left: 1px solid var(--line);
}

.stats article:last-child {
  border-left: 0;
}

.stats strong {
  display: block;

  font-size: 2rem;

  color: #0a4e9c;
}

.stats span {
  display: block;

  color: var(--muted);

  font-size: 0.9rem;
}

.stat-icon {
  font-size: 1.55rem;

  color: var(--blue);
}

.stat-icon.orange-icon {
  color: var(--orange);
}

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

.cta-band {
  position: relative;

  background: linear-gradient(135deg, #07285c, #061c43);

  color: #fff;

  padding: 48px 0;

  overflow: hidden;
}

.cta-pattern {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at 15% 110%,
      rgba(18, 198, 238, 0.25),
      transparent 35%),
    repeating-linear-gradient(135deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.035) 22px 30px);
}

.cta-inner {
  position: relative;

  display: flex;

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

  gap: 30px;
}

.cta-inner h2 {
  font-size: 2rem;
}

.cta-inner p {
  color: #c7d9ed;
}

.contact-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.contact-actions a {
  border: 1px solid rgba(18, 198, 238, 0.7);

  border-radius: 30px;

  padding: 10px 18px;

  font-weight: 700;

  transition: 0.25s;
}

.contact-actions a:hover {
  background: var(--cyan);

  color: #03152f;
}

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

.footer {
  background: #03142f;

  color: #91a7c3;

  padding: 20px 0;

  font-size: 0.86rem;
}

.footer .container {
  display: flex;

  justify-content: space-between;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}

/* =========================================================
   CAREERS
   ========================================================= */

.careers-section {
  padding: 25px 0 72px;
}

.careers-shell {
  position: relative;

  background: linear-gradient(135deg, #f7fbff, #edf6ff);

  border: 1px solid #dce9f7;

  border-radius: 28px;

  padding: 46px;

  box-shadow: var(--shadow);

  overflow: hidden;
}

.careers-shell::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(18, 198, 238, 0.15),
      transparent 68%);

  left: -130px;
  top: -150px;
}

.careers-intro {
  position: relative;

  max-width: 760px;

  margin: 0 auto 30px;

  text-align: center;
}

.careers-intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);

  line-height: 1.2;

  margin: 8px 0 12px;
}

.careers-intro p {
  color: var(--muted);
}

.location-chip {
  display: inline-flex;

  margin-top: 16px;

  padding: 8px 16px;

  border-radius: 999px;

  background: #fff;

  border: 1px solid #d9e7f5;

  color: #0a4e9c;

  font-weight: 800;
}

.career-columns {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 22px;

  position: relative;
}

.career-card {
  background: #fff;

  border: 1px solid #dce7f2;

  border-radius: 22px;

  padding: 28px;

  box-shadow: 0 14px 36px rgba(15, 58, 105, 0.08);
}

.career-card h3 {
  font-size: 1.25rem;

  margin: 7px 0 15px;
}

.career-kicker {
  color: var(--blue);

  font-weight: 900;

  font-size: 0.82rem;

  letter-spacing: 0.03em;
}

.career-card ul,
.skills-list {
  padding-right: 20px;

  color: var(--muted);
}

.career-card li {
  margin: 8px 0;
}

.accent-card {
  background: linear-gradient(145deg, #082553, #061d45);

  color: #fff;

  border-color: rgba(255, 255, 255, 0.08);
}

.accent-card .career-kicker {
  color: var(--orange);
}

.accent-card .skills-list {
  color: #d7e5f4;
}

.skills-list li::marker {
  color: var(--orange);

  font-weight: 900;
}

.accent-card b {
  color: #fff;
}

/* =========================================================
   DESKTOP LOGO SAFETY
   ========================================================= */

@media (min-width: 981px) {
  .brand {
    width: 175px;
    height: 72px;
  }

  .brand img {
    width: 175px;
    height: 68px;
  }
}

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

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

  .nav-wrap {
    height: 72px;

    gap: 18px;
  }

  .brand {
    width: 160px;
    height: 64px;
  }

  .brand img {
    width: 160px;
    height: 62px;
  }

  .main-nav {
    position: absolute;

    top: 72px;

    right: 4%;
    left: 4%;

    display: none;

    flex-direction: column;

    align-items: stretch;

    background: #061a3a;

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

    border-radius: 16px;

    padding: 12px;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    padding: 11px 14px;
  }

  .main-nav a::after {
    bottom: 5px;
  }

  .menu-btn {
    display: block;
  }

  .phone-pill {
    margin-right: 0;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy>p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-points,
  .hero-actions {
    justify-content: center;
  }

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

  .server-stage {
    height: 360px;
  }

  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-strip article:nth-child(2) {
    border-left: 0;
  }

  .quick-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .partner-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-logo:nth-child(3n) {
    border-left: 0;
  }

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

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

  .steps::before {
    display: none;
  }

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

  .stats article:nth-child(2) {
    border-left: 0;
  }

  .stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-inner {
    flex-direction: column;

    text-align: center;

    align-items: center;
  }
}

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

@media (max-width: 640px) {
  .container {
    width: min(94%, 1180px);
  }

  .site-header {
    height: 70px;
  }

  .nav-wrap {
    height: 70px;

    gap: 12px;
  }

  .brand {
    width: 145px;
    height: 62px;
  }

  .brand img {
    width: 145px;
    height: 58px;
  }

  .phone-pill {
    display: none;
  }

  .main-nav {
    top: 70px;
  }

  .hero {
    padding-top: 100px;

    min-height: auto;

    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy>p {
    font-size: 1rem;
  }

  .hero-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    text-align: right;
  }

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

  .primary-btn,
  .ghost-btn {
    width: 100%;

    justify-content: center;
  }

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

  .server-stage {
    height: 285px;
  }

  .rack {
    transform: scale(0.72);

    transform-origin: bottom;
  }

  .rack-a {
    left: 0;
  }

  .rack-b {
    left: 32%;
  }

  .rack-c {
    left: 65%;
  }

  .cloud-node {
    font-size: 1.4rem;

    padding: 10px 13px;
  }

  .quick-strip {
    margin-top: 20px;

    padding: 18px 10px;

    grid-template-columns: 1fr;
  }

  .quick-strip article {
    border-left: 0 !important;

    border-bottom: 1px solid var(--line) !important;

    justify-content: flex-start;
  }

  .quick-strip article:last-child {
    border-bottom: 0 !important;
  }

  .partner-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logo {
    height: 52px;

    padding: 5px;
  }

  .partner-logo:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .partner-logo:nth-child(even) {
    border-left: 0;
  }

  .partner-logo img {
    max-width: 145px;

    height: 38px;
  }

  .section {
    padding: 50px 0;
  }

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

  .process-box {
    padding: 38px 20px;
  }

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

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

  .stats article {
    border-left: 0 !important;

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

  .stats article:last-child {
    border-bottom: 0 !important;
  }

  .contact-actions {
    flex-direction: column;

    width: 100%;
  }

  .contact-actions a {
    width: 100%;
  }

  .footer .container {
    flex-direction: column;

    align-items: center;

    gap: 4px;

    text-align: center;
  }

  .careers-shell {
    padding: 34px 20px;
  }

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

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

@media (max-width: 760px) {
  .careers-shell {
    padding: 34px 20px;
  }

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

.partner-logo.microsoft img {
  width: 115px;
}

.partner-logo.fortinet img {
  width: 145px;
}

.partner-logo.eset img {
  width: 105px;
}

.partner-logo.vmware img {
  width: 145px;
}

.partner-logo.synology img {
  width: 145px;
}

.partner-logo.cloudflare img {
  width: 180px;
}

.partner-logo.eset,
.partner-logo.microsoft,
.partner-logo.cloudflare,
.partner-logo.vmware,
.partner-logo.synology,
.partner-logo.fortinet {
  background: #ffffff;
  border-radius: 10px;
}

@media (max-width: 640px) {

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

  body {
    font-size: 16px;
  }

  /* Hero */
  .eyebrow {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .2px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.6px;
  }

  .hero-copy>p {
    font-size: 1.08rem;
    line-height: 1.8;
  }

  /* Feature points */
  .hero-points {
    font-size: .98rem;
    line-height: 1.5;
  }

  .hero-points span {
    padding: 10px 11px;
  }

  /* Buttons */
  .primary-btn,
  .ghost-btn {
    font-size: 1.02rem;
    font-weight: 700;
  }

  /* Quick services */
  .quick-strip article strong {
    font-size: .92rem;
  }

  .quick-strip article small {
    font-size: .8rem;
    line-height: 1.4;
  }

  .mini-icon {
    font-size: 1.25rem;
  }

  /* Section headings */
  .center-head h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.25;
  }

  .center-head p {
    font-size: 1rem;
    line-height: 1.75;
  }

  /* Service cards */
  .service-card h3 {
    font-size: 1.15rem;
    line-height: 1.4;
  }

  .service-card p {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Process */
  .step h3 {
    font-size: 1.1rem;
  }

  .step p {
    font-size: 1rem;
    line-height: 1.75;
  }

  /* Statistics */
  .stats strong {
    font-size: 1.75rem;
  }

  .stats span {
    font-size: .85rem;
    line-height: 1.5;
  }

  /* CTA */
  .cta-inner h2 {
    font-size: 1.8rem;
    line-height: 1.35;
  }

  .cta-inner p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-actions a {
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    font-size: .85rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 640px) {

  /* ===== MOBILE FONT SIZE OVERRIDE ===== */

  body {
    font-size: 17px !important;
  }

  /* Main hero */
  .hero h1 {
    font-size: 44px !important;
    line-height: 1.15 !important;
  }

  .hero-copy>p {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  .eyebrow {
    font-size: 14px !important;
  }

  /* Hero feature list */
  .hero-points {
    font-size: 16px !important;
  }

  .hero-points span {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  /* Buttons */
  .primary-btn,
  .ghost-btn {
    font-size: 17px !important;
  }

  /* Quick service strip */
  .quick-strip article strong {
    font-size: 15px !important;
  }

  .quick-strip article small {
    font-size: 13px !important;
  }

  /* Section titles */
  .center-head h2 {
    font-size: 34px !important;
    line-height: 1.25 !important;
  }

  .center-head p {
    font-size: 17px !important;
    line-height: 1.8 !important;
  }

  /* Service cards */
  .service-card h3 {
    font-size: 19px !important;
  }

  .service-card p {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  /* Process / steps */
  .step h3 {
    font-size: 19px !important;
  }

  .step p {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  /* Statistics */
  .stats strong {
    font-size: 28px !important;
  }

  .stats span {
    font-size: 14px !important;
  }

  /* CTA */
  .cta-inner h2 {
    font-size: 28px !important;
    line-height: 1.35 !important;
  }

  .cta-inner p {
    font-size: 17px !important;
    line-height: 1.8 !important;
  }

  .contact-actions a {
    font-size: 17px !important;
  }

  /* Footer */
  .footer {
    font-size: 14px !important;
  }
}