/* =========================================================
   ASSIST NETWORKS - GLOBAL STYLES
   Reordered to reduce accidental overrides and keep page
   sections grouped logically.
========================================================= */

:root {
  --blue: #2f6fbf;
  --blue-dark: #255aa0;
  --orange: #ff9f1c;

  --navy: #071018;
  --navy-soft: #0c1822;

  --text: #121820;
  --text-muted: #63707d;

  --line: #e5e9ed;
  --background: #f6f7f3;
  --white: #ffffff;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 80px;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 16, 24, 0.16);
  --max: 1180px;
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

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

p {
  line-height: 1.7;
}

h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  word-spacing: 0.06em;
  margin-bottom: 30px;
  max-width: 620px;
}

h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 10px;
}

/* =========================================================
   SHARED LAYOUT / UTILITIES
========================================================= */

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

.section {
  padding: 76px 0;
  border-top: 1px solid rgba(7,16,24,.04);
}

.section-tight {
  padding: 48px 0;
}

.center {
  text-align: center;
}

.center p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 34px;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.green-text {
  color: var(--blue);
}

.underline {
  width: 92px;
  height: 10px;
  margin-top: -16px;
  transform: translateY(-4px);
}

.lead {
  color: #27323b;
  font-size: 17px;
}

.top-label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--orange);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 15px;
  z-index: 5;
}

/* =========================================
   MOBILE BURGER MENU
========================================= */

.nav-toggle,

.burger {
  display: none;
}

/* Burger button */

.burger {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all .2s ease;
}

.burger:hover {
  background: rgba(255,255,255,.14);
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s ease;
}

/* Mobile nav */

@media (max-width: 980px) {

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(7,16,24,.96);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
    z-index: 999;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,.06);
  }

  .nav-links .btn {
    margin-top: 8px;
    width: 100%;
  }

  /* Show menu when checked */

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  /* Animate burger into X */
  .nav-toggle:checked + .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 34px;
  left: 0;
  right: 0;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-links a {
  opacity: .9;
}

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

.nav-links .btn:hover {
  color: #ffffff;
}

/* Service pages use a light header */
.service-header {
  color: var(--navy);
}

.service-header .nav-links a {
  color: var(--navy);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(7,16,24,.08);
  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(7,16,24,.14);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: #ffffff;
}

.btn-outline {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

.btn-outline-dark {
  border-color: rgba(7,16,24,.55);
  color: var(--navy);
}

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

.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 32%, rgba(47,111,191,.26), transparent 22%),
    linear-gradient(90deg, rgba(7,16,24,.92) 0%, rgba(7,16,24,.85) 46%, rgba(7,16,24,.55) 100%),
    url("Home-Banner-Mono.jpeg") left center / cover;
  min-height: 680px;
  padding: 190px 0 88px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,16,24,.25), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 630px;
}

.hero p {
  max-width: 520px;
  font-size: 19px;
  color: rgba(255,255,255,.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* =========================================================
   INTRO SECTION
========================================================= */

.intro {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.2fr .75fr;
  gap: 44px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 5px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.check-item svg {
  color: var(--orange);
  flex: 0 0 auto;
}

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

.services {
  background: linear-gradient(180deg, #f7f9fc 0%, #f2f4ef 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.service-card-link {
  display: flex;
  min-height: 100%;
}

.service-card {
  width: 100%;
  background: var(--white);
  border: 1px solid #edf0ec;
  border-radius: 8px;
  padding: 25px 16px 22px;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 28px rgba(7,16,24,.05);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 24px rgba(7,16,24,.08),
    0 24px 50px rgba(7,16,24,.12);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--navy);
  box-shadow: 0 0 0 rgba(255,159,28,0);
  transition:
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
  transition: all .3s ease;
}

.service-card:hover .icon-circle {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(255,159,28,.18);
}

.service-card:hover .icon-circle svg {
  stroke: var(--white);
  transform: scale(1.1);
  stroke-dashoffset: 40;
}

.service-card h3 {
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: auto;
}

.arrow {
  color: var(--orange);
  font-size: 25px;
  font-weight: 900;
  margin-top: 10px;
}

/* =========================================================
   WHY SECTION
========================================================= */

.why {
  background: var(--navy);
  color: var(--white);
  padding: 62px 0;
}

.why h2 {
  text-align: center;
  margin-bottom: 42px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-card {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.why-card:last-child {
  border-right: 0;
}

.why-card svg {
  color: var(--orange);
  margin-bottom: 15px;
}

.why-card h3 {
  margin-bottom: 6px;
}

.why-card p {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  margin: 0;
}

/* =========================================================
   TEAM SECTION
   Supports both markup styles:
   - <div class="team-grid"><article class="team-card">
   - <section id="team"><div class="service-grid"><article class="service-card">
========================================================= */

.team-section,
#team {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.team-grid,
#team .service-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
}

.team-card,
#team .service-card {
  width: 250px;
  flex: 0 0 250px;
  background: var(--white);
  border: 1px solid #edf0ec;
  border-radius: 12px;
  padding: 30px;
  min-height: 100%;
  text-align: center;
  box-shadow: 0 10px 28px rgba(7,16,24,.06);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.team-card:hover,
#team .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(7,16,24,.12);
}

.team-avatar,
#team .team-avatar {
  width: 125px;
  height: 125px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 rgba(255,159,28,0);
  transition: box-shadow .25s ease;
}

.team-card:hover .team-avatar,
#team .service-card:hover .team-avatar {
  box-shadow: 0 0 24px rgba(255,159,28,.18);
}

.team-avatar img,
#team .team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(.98);
  display: block;
}

.team-card h3,
#team .service-card h3 {
  margin-bottom: 6px;
}

.team-card span,
#team .service-card span {
  display: block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-card p,
#team .service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cta-band {
  background: var(--blue);
  color: var(--navy);
  padding: 38px 0;
}

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

.cta-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-copy h2 {
  font-size: 34px;
  margin-bottom: 2px;
}

.cta-copy p {
  margin: 0;
  color: rgba(7,16,24,.8);
  font-weight: 650;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-grid h4 {
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  margin: 0;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}

.cert {
  border: 1px solid rgba(255,159,28,.65);
  border-radius: 7px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  font-size: 13px;
}

.copyright {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

/* =========================================================
   SERVICE PAGE LAYOUTS
========================================================= */

.service-page-hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 170px 0 80px;
  overflow: hidden;
}

.service-page-hero .center {
  text-align: center;
}

.service-page-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.service-page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 48px;
  align-items: center;
}

.service-hero-copy h1 {
  color: var(--navy);
  max-width: 760px;
}

.service-hero-copy p {
  color: var(--text-muted);
  font-size: 20px;
  max-width: 620px;
}

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

.support-card-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: rgba(47,111,191,.08);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.support-card h2 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.support-card p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.support-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.support-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.support-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.service-strip {
  background: var(--navy);
  color: var(--white);
  padding: 24px 0;
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-strip-grid div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-strip-grid strong {
  font-size: 16px;
}

.service-strip-grid span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.service-problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 56px;
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 18px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
}

.problem-item span {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.problem-item p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.service-solution {
  background: #f7f9fc;
}

.solution-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 52px;
  align-items: center;
}

.solution-panel {
  background: var(--navy);
  color: var(--white);
  padding: 48px;
  border-radius: 22px;
}

.solution-panel h2 {
  margin-bottom: 20px;
}

.solution-panel p {
  color: rgba(255,255,255,.82);
}

.statement {
  margin-top: 28px;
  color: var(--orange) !important;
  font-size: 22px;
  font-weight: 800;
}

.solution-points {
  display: grid;
  gap: 22px;
}

.solution-points article {
  background: var(--white);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.solution-points h3 {
  margin-bottom: 10px;
}

.solution-points p {
  margin: 0;
  color: var(--text-muted);
}

.included-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 60px;
}

.included-heading p {
  color: var(--text-muted);
  font-size: 18px;
}

.included-list {
  display: grid;
  gap: 18px;
}

.included-list div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.included-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.included-list span {
  color: var(--text-muted);
}

.how-section {
  background: var(--navy);
  color: var(--white);
}

.how-section p {
  color: rgba(255,255,255,.72);
}

.workflow {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.workflow article {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
}

.workflow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 18px;
}

.workflow h3 {
  margin-bottom: 12px;
}

.workflow p {
  margin: 0;
}

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

@media (max-width: 1100px) {
  .service-hero-grid,
  .problem-grid,
  .solution-grid,
  .included-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 170px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  #team .service-grid {
    display: flex;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

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

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

@media (max-width: 700px) {
  .service-page-hero {
    padding: 140px 0 60px;
  }

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

  .support-card,
  .solution-panel {
    padding: 28px;
  }

  .problem-item {
    flex-direction: column;
    gap: 12px;
  }

  .team-card,
  #team .service-card {
    width: 100%;
    flex: 1 1 100%;
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 26px, var(--max));
  }

  .hero {
    padding: 150px 0 58px;
  }

  h1 {
    font-size: 52px;
  }

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

  #team .service-grid {
    display: flex;
  }

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

  .why-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 0 0 24px;
  }

  .why-card:last-child {
    border-bottom: 0;
  }

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

  .cta-copy {
    align-items: flex-start;
  }
}

/* =========================================================
   REMOTE SUPPORT PAGE
   Darker, more secure-feeling support portal styling.
   Add class="remote-support-page" to the <body> tag on
   remote-support.html for these styles to apply only there.
========================================================= */

.remote-support-page .service-page-hero {
  background:
    radial-gradient(circle at top right, rgba(255,159,28,.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(47,111,191,.18), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
}

.remote-support-page .service-header {
  color: var(--white);
}

.remote-support-page .service-header .nav-links a {
  color: var(--white);
}

.remote-support-page .service-page-hero h1,
.remote-support-page .service-page-hero p {
  color: var(--white);
}

.remote-support-page .service-page-hero p {
  opacity: .82;
}

.remote-support-page .service-page-hero .center {
  max-width: 820px;
  margin: 0 auto;
}

.remote-support-page .support-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.remote-support-page .support-card h2 {
  color: var(--white);
}

.remote-support-page .support-card p {
  color: rgba(255,255,255,.72);
}

.remote-support-page .support-card li {
  color: rgba(255,255,255,.9);
}

.remote-support-page .section-light {
  background: #f7f9fc;
}

.remote-support-page .section-dark {
  background: var(--navy);
  color: var(--white);
}

.remote-support-page .section-dark h2,
.remote-support-page .section-dark h3 {
  color: var(--white);
}

.remote-support-page .section-dark p {
  color: rgba(255,255,255,.72);
}

.remote-support-page .workflow article {
  border-top: 3px solid var(--orange);
}

.remote-support-page .team-card:hover,
.remote-support-page #team .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255,159,28,.12);
}

.remote-support-page .remote-support-panel {
  max-width: 860px;
  margin: 40px auto 0;
  padding: 34px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.remote-support-page .remote-support-panel p {
  max-width: 700px;
}

@media (max-width: 700px) {
  .remote-support-page .remote-support-panel {
    padding: 26px;
  }
}

/* =========================================

   MOBILE HERO IMPROVEMENTS

========================================= */

@media (max-width: 640px) {

  /* Move header/logo slightly lower */

  .site-header {

    top: 42px;

  }

  .logo {

    margin-top: 6px;

  }

  /* Smaller underline on mobile */

  .underline {

    width: 58px;

    height: 8px;

    margin-top: -10px;

    transform: translateY(-2px);

  }

  /* Mobile hero image */

  .hero {

    background:

      url("Home-Banner-Mobile.jpeg")

      center 58% / cover no-repeat !important;

    padding: 150px 0 58px;

  }

}