:root {
  --ink: #17202a;
  --muted: #5d6873;
  --line: #d9e0e6;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --blue: #2f5d8c;
  --blue-dark: #1f4469;
  --green: #397263;
  --gold: #b8883b;
  --shadow: 0 18px 40px rgba(23, 32, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-text strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.nav-login {
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-login:hover,
.nav-login:focus {
  border-color: var(--blue);
}

.hero {
  display: grid;
  align-items: center;
  min-height: 68vh;
  padding: 86px 0 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 43%, rgba(255, 255, 255, 0.72) 67%, rgba(255, 255, 255, 0.38) 100%),
    url("assets/hero-remote-support.png");
  background-position: center right;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 980px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.lead {
  max-width: 780px;
  color: #33414e;
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.primary:hover,
.button.primary:focus {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--blue);
  background: white;
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus {
  border-color: var(--blue);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: white;
  color: #2f3b46;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.service-strip a {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 16px 18px;
  background: white;
  color: #2f3b46;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.service-strip a + a {
  border-left: 1px solid var(--line);
}

.service-strip a:hover,
.service-strip a:focus {
  color: var(--blue);
  background: #f8fafb;
}

.section {
  padding: 82px 0;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.intro-grid p:last-child,
.approach-copy p,
.contact-inner p {
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 270px;
  padding: 26px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 24px;
}

.service-card p,
.proof-item p {
  color: var(--muted);
  font-size: 15px;
}

.approach {
  background: var(--paper);
}

.markets {
  background: var(--paper);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.market-item {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 247, 248, 0.82), rgba(255, 255, 255, 0.96));
}

.market-item h3 {
  color: var(--blue-dark);
}

.market-item p {
  color: var(--muted);
  font-size: 15px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.process-panel {
  padding: 28px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-panel img {
  width: 100%;
  height: auto;
}

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

.step-item {
  min-height: 210px;
  padding: 24px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-item span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-weight: 700;
}

.step-item p {
  color: var(--muted);
  font-size: 15px;
}

.capabilities {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 46px;
  align-items: start;
}

.capabilities-grid > div:first-child {
  position: sticky;
  top: 104px;
}

.capabilities-grid > div:first-child p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.capability-columns,
.capability-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability-columns div,
.capability-block {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-block {
  min-height: 318px;
}

.capability-columns h3,
.capability-block h3 {
  color: var(--blue-dark);
}

.capability-columns ul,
.capability-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.capability-block li::marker {
  color: var(--green);
}

.proof {
  background: #202832;
  color: white;
}

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

.proof-item {
  min-height: 212px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.proof-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 22px;
}

.proof-number {
  display: inline-grid;
  place-items: center;
  min-width: 64px;
  height: 44px;
  padding: 0 12px;
  margin-bottom: 22px;
  color: var(--ink);
  background: white;
  border-radius: 8px;
  font-weight: 700;
}

.proof-item p {
  color: #d5dce2;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.credential-badges .proof-number {
  margin-bottom: 0;
}

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

.credentials-card p {
  font-weight: 700;
}

.proof-wide {
  grid-column: span 4;
  min-height: 0;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  background: var(--paper);
}

.help-now {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.help-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.help-copy p {
  color: var(--muted);
  font-size: 18px;
}

.help-form {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.help-form label {
  display: grid;
  gap: 7px;
  color: #27333e;
  font-size: 13px;
  font-weight: 700;
}

.help-form input,
.help-form select,
.help-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.help-form textarea {
  resize: vertical;
}

.help-form input:focus,
.help-form select:focus,
.help-form textarea:focus {
  outline: 3px solid rgba(47, 93, 140, 0.18);
  border-color: var(--blue);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.customer-login {
  padding-top: 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.login-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 34px;
  background: #202832;
  color: white;
  border-radius: 8px;
}

.login-inner p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #d5dce2;
  font-size: 17px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-inner p {
  max-width: 660px;
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 26px 0;
  color: #dce3e9;
  background: #151b22;
}

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

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.footer-inner a {
  color: white;
  font-size: 13px;
  text-decoration: none;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chat-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  color: white;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 32, 42, 0.2);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.chat-button span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  line-height: 1;
}

.chat-panel {
  width: min(330px, calc(100vw - 32px));
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(23, 32, 42, 0.22);
}

.chat-panel p {
  margin: 6px 0 18px;
  color: var(--muted);
}

.chat-actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 20px;
  }

  .service-strip,
  .service-grid,
  .market-grid,
  .proof-grid,
  .intro-grid,
  .approach-grid,
  .capabilities-grid,
  .faq-grid,
  .help-grid,
  .login-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .capabilities-grid > div:first-child {
    position: static;
  }

  .proof-wide {
    grid-column: auto;
  }

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

  .service-strip a:nth-child(odd) {
    border-left: 0;
  }

  .service-strip a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    padding: 12px 16px;
  }

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

  .brand-text span {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 58px 0 52px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
      url("assets/hero-remote-support.png");
    background-position: center right;
    background-size: cover;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .service-strip span,
  .service-strip a {
    min-height: 56px;
    padding: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .service-card,
  .market-item,
  .step-item,
  .capability-columns div,
  .proof-item,
  .help-form,
  .login-inner,
  .contact-inner {
    padding: 24px;
  }

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

  .market-grid,
  .step-grid,
  .capability-columns,
  .capability-matrix {
    grid-template-columns: 1fr;
  }

  .capability-block {
    min-height: 0;
  }

  .chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .process-panel {
    padding: 16px;
  }

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