:root {
  --bg: #040b16;
  --bg-soft: #081425;
  --bg-panel: rgba(10, 22, 40, 0.78);
  --bg-panel-2: rgba(14, 28, 48, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(120, 170, 255, 0.24);
  --text: #eaf2ff;
  --muted: #9fb0c7;
  --heading: #ffffff;
  --primary: #2f7df6;
  --primary-2: #1d5ed8;
  --primary-glow: rgba(47, 125, 246, 0.28);
  --max-width: 1240px;
  --nav-height: 76px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  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;
  background:
    radial-gradient(circle at top left, rgba(47, 125, 246, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(32, 85, 190, 0.10), transparent 20%),
    linear-gradient(180deg, #030914 0%, #06101d 35%, #071325 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 10, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.site-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

.nav-links,
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a,
.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: #c8d5e7;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.nav-links a.active::after,
.nav-links a:hover::after,
.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #7cb4ff);
  border-radius: 999px;
}

/* Hero */
.hero,
.page-hero,
.service-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-background,
.services-hero-bg,
.solutions-hero-bg,
.portal-hero-bg,
.about-hero-bg,
.page-hero-bg,
.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

.hero::before,
.page-hero::before,
.service-hero::before,
.services-hero-bg::before,
.solutions-hero-bg::before,
.portal-hero-bg::before,
.about-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.82) 0%, rgba(2, 8, 18, 0.60) 40%, rgba(2, 8, 18, 0.42) 62%, rgba(2, 8, 18, 0.68) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.16) 0%, rgba(2, 8, 18, 0.76) 100%);
}

.hero-overlay,
.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content,
.service-hero-content,
.page-hero-content,
.hero-inner,
.hero-card {
  position: relative;
  z-index: 5;
}

.hero-content,
.hero-card {
  width: min(760px, 100%);
  padding: 44px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 24, 43, 0.22), rgba(6, 17, 31, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero h1,
.page-hero h1,
.service-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero p,
.page-hero p,
.service-hero p {
  margin: 0;
  font-size: 1.06rem;
  color: #d6e2f0;
  max-width: 60ch;
}

.eyebrow,
.hero-tag {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #7fb0ff;
  text-transform: uppercase;
}

.hero-copy {
  margin: 0;
  font-size: 1.06rem;
  color: #d6e2f0;
  max-width: 60ch;
}

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

.hero-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #a9b9cf;
  font-size: 0.92rem;
}

.hero-background,
.hero-overlay,
.hero::before,
.overlay {
  pointer-events: none !important;
}

/* Buttons */
.button,
.button-secondary,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
}

.button,
.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 34px var(--primary-glow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.button:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(47, 125, 246, 0.36);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #eef4ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Sections */
.section {
  position: relative;
  padding: 92px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top center, rgba(47, 125, 246, 0.06), transparent 32%);
  pointer-events: none;
}

.section-sm {
  padding: 68px 0;
}

.page-shell {
  padding-top: 0;
}

.content-block {
  padding: 72px 0;
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 20px;
  text-align: center;
}

.section-heading.left {
  margin: 0 0 20px;
  text-align: left;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Cards / Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.service-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 34, 58, 0.82), rgba(8, 18, 34, 0.90));
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.36);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  color: #fff;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-card a {
  color: #86b7ff;
  font-weight: 600;
}

.service-card a:hover {
  color: #b5d2ff;
}

/* Feature Strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-tile {
  padding: 22px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.feature-tile h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* CTA */
.cta-panel {
  margin-top: 48px;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(18, 44, 80, 0.92), rgba(8, 21, 40, 0.96));
  border: 1px solid rgba(127, 176, 255, 0.18);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-panel h3 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  color: #fff;
}

.cta-panel p {
  margin: 0 auto 22px;
  max-width: 680px;
  color: #c9d6e8;
}

/* Generic page content */
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
  margin-top: 44px;
}

.content-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 34, 58, 0.76), rgba(8, 18, 34, 0.88));
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
}

.content-panel h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  color: #fff;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.content-panel ul {
  margin: 0;
  padding-left: 18px;
}

.content-panel li + li {
  margin-top: 10px;
}

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 54px 0 28px;
  background: rgba(2, 8, 16, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #fff;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: var(--muted);
  font-size: 0.96rem;
}

.footer-grid a:hover {
  color: #dceaff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li + li {
  margin-top: 10px;
}

/* Helpers */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* Forms */
form label {
  display: block;
  margin-bottom: 6px;
  color: #dce8f8;
  font-weight: 500;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  font: inherit;
}

form textarea {
  resize: vertical;
  min-height: 140px;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: 2px solid rgba(47, 125, 246, 0.32);
  border-color: rgba(47, 125, 246, 0.35);
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid,
  .feature-strip,
  .footer-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .navbar {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links,
  .site-nav {
    justify-content: center;
    gap: 16px;
  }

  .hero,
  .page-hero,
  .service-hero {
    min-height: 540px;
    padding: 34px 0;
  }

  .hero-content,
  .hero-card {
    padding: 28px;
  }

  .hero h1,
  .page-hero h1,
  .service-hero h1 {
    font-size: clamp(2rem, 8vw, 3.1rem);
  }

  .services-grid,
  .feature-strip,
  .footer-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section-sm,
  .content-block {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .hero-content,
  .hero-card {
    padding: 22px;
    border-radius: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }
}

.support-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.support-download-card {
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.support-download-card h3 {
  margin-bottom: 14px;
}

.support-download-card p {
  margin-bottom: 20px;
  color: rgba(226, 232, 240, 0.86);
}

.remote-support-note {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.remote-support-note h2 {
  margin-bottom: 14px;
}

.remote-support-note p {
  margin-bottom: 22px;
  color: rgba(226, 232, 240, 0.86);
}

@media (max-width: 900px) {
  .support-download-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Remote Support Page Fixes ===== */

.support-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  align-items: stretch;
}

.support-download-card {
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.support-download-card h3 {
  margin: 0 0 14px;
}

.support-download-card p {
  margin: 0 0 20px;
  color: rgba(226, 232, 240, 0.86);
}

.code-block {
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 220px;
  min-height: 220px;
}

.code-block code {
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #38bdf8;
  white-space: pre-wrap;
  word-break: break-word;
}

.remote-support-note {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.remote-support-note h2 {
  margin-bottom: 14px;
}

.remote-support-note p {
  margin-bottom: 22px;
  color: rgba(226, 232, 240, 0.86);
}

.portal-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.portal-feature-card {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 24px;
}

.portal-feature-card h3 {
  margin-bottom: 12px;
}

.portal-feature-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
}

@media (max-width: 900px) {
  .support-download-grid,
  .portal-feature-grid {
    grid-template-columns: 1fr;
  }

  .code-block {
    min-height: auto;
    max-height: 260px;
  }
}

/* ===== Services page layout improvement ===== */

.support-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  align-items: stretch;
}

.support-download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.support-download-card .button {
  margin-top: 20px;
  width: 100%;
}

.remote-support-note {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 900px) {
  .support-download-grid {
    grid-template-columns: 1fr;
  }

  .support-download-card {
    min-height: auto;
  }
}

.portal-section + .portal-section {
  padding-top: 40px;
}

/* ===== Services page layout improvement ===== */

.support-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  align-items: stretch;
}

.support-download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.support-download-card .button {
  margin-top: 20px;
  width: 100%;
}

.remote-support-note {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 900px) {
  .support-download-grid {
    grid-template-columns: 1fr;
  }

  .support-download-card {
    min-height: auto;
  }
}

/* ===== Premium Services Page ===== */

.premium-services-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.72) 36%, rgba(2, 6, 23, 0.9) 100%);
}

.premium-hero-card {
  max-width: 700px;
}

.services-premium-intro .section-heading {
  max-width: 860px;
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.service-premium-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(9, 15, 30, 0.92) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.service-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 38%);
  pointer-events: none;
}

.service-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.34);
}

.service-icon-wrap {
  margin-bottom: 18px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.22), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.26);
  color: #dbeafe;
}

.service-premium-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.service-premium-card p {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.86);
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.service-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: rgba(226, 232, 240, 0.86);
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  transform: translateY(-50%);
}

.service-premium-card .button {
  margin-top: auto;
  width: 100%;
}

.featured-service-card {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.16);
}

.services-feature-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.services-feature-copy,
.services-feature-highlights {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.services-feature-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.services-feature-copy p {
  margin: 0 0 22px;
  color: rgba(226, 232, 240, 0.86);
}

.services-feature-highlights {
  display: grid;
  gap: 18px;
}

.feature-highlight-card {
  background: rgba(2, 10, 25, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  padding: 20px;
}

.feature-highlight-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-highlight-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.services-why-grid .portal-feature-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.services-why-grid .portal-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(96, 165, 250, 0.22);
}

.services-final-cta .remote-support-note {
  max-width: 980px;
}

@media (max-width: 980px) {
  .services-premium-grid,
  .services-feature-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-premium-card,
  .services-feature-copy,
  .services-feature-highlights {
    padding: 24px;
  }
}

/* ===== Homepage Trust / Testimonials / Book a Call ===== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.trust-card {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.88);
  letter-spacing: 0.03em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
}

.testimonial-quote {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: #dbeafe;
}

/* ===== Contact Form ===== */

.contact-form-section {
  padding: 72px 0;
}

.support-form {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(2, 6, 23, 0.72);
  color: #f8fafc;
  font: inherit;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.8);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.12);
}

.checkbox-row {
  margin-top: 6px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.form-actions {
  margin-top: 24px;
}

.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success-message {
  padding: 28px;
  border-radius: 16px;
  background: rgba(10, 90, 55, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.form-success-message h3 {
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.form-status-message {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
}

.form-status-success {
  background: rgba(22, 163, 74, 0.16);
  border-color: rgba(34, 197, 94, 0.38);
}

.form-status-error {
  background: rgba(220, 38, 38, 0.14);
  border-color: rgba(248, 113, 113, 0.35);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-side-card {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.contact-side-panel {
  display: grid;
  gap: 24px;
}

.contact-side-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.contact-side-card p {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.82);
}

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

.contact-detail-list a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.22);
  color: #f8fafc;
}

.contact-detail-list a:hover {
  background: rgba(37, 99, 235, 0.22);
}

.contact-steps {
  margin: 0;
  padding-left: 18px;
  color: rgba(226, 232, 240, 0.82);
}

.contact-steps li + li {
  margin-top: 10px;
}

.form-status-message {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
}

.form-status-success {
  background: rgba(22, 163, 74, 0.16);
  border-color: rgba(34, 197, 94, 0.38);
}

.form-status-error {
  background: rgba(220, 38, 38, 0.14);
  border-color: rgba(248, 113, 113, 0.35);
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Hardware Removal Enterprise Page */
.hardware-hero-enterprise {
  position: relative;
  padding: 150px 0 95px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(14, 165, 233, 0.12), transparent 24%),
    linear-gradient(135deg, #020817 0%, #061126 42%, #020817 100%);
  overflow: hidden;
}

.hardware-hero-enterprise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
  pointer-events: none;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.service-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.05;
  color: #ffffff;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 26px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.45);
  color: #e2e8f0;
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.7);
}

.btn-full {
  width: 100%;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stat-card {
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.46);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.hero-stat-card span {
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-hero-card {
  display: flex;
  justify-content: flex-end;
}

.glass-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(8, 15, 32, 0.72);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(14px);
}

.hero-info-card {
  width: 100%;
  max-width: 430px;
  padding: 30px;
}

.hero-info-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.55rem;
}

.hero-info-card p {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.75;
}

.hero-check-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
  color: rgba(226, 232, 240, 0.84);
}

.hero-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
  font-size: 1.2rem;
  line-height: 1;
}

.hero-mini-note {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.48);
}

.hero-mini-note strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.hero-mini-note span {
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.6;
}

.service-section {
  padding: 90px 0;
  background: #020817;
}

.section-alt {
  background: linear-gradient(180deg, rgba(7, 16, 34, 0.98), rgba(2, 8, 23, 1));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.18;
}

.section-heading p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.8;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.icon-feature-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(10, 18, 36, 0.84);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.14);
  color: #93c5fd;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-feature-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

.icon-feature-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.75;
}

.steps-grid,
.faq-grid,
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card,
.faq-card,
.compliance-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(10, 18, 36, 0.82);
}

.step-card h3,
.faq-card h3,
.compliance-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

.step-card p,
.faq-card p,
.compliance-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.75;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
  font-weight: 800;
}

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

.equipment-item {
  padding: 18px 20px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
  font-weight: 600;
  text-align: center;
}

.narrow-container {
  max-width: 920px;
}

.form-shell {
  padding: 30px;
}

.hardware-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group label span,
.consent-row label span {
  color: #93c5fd;
}

.hardware-form input,
.hardware-form select,
.hardware-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.88);
  color: #f8fafc;
  font: inherit;
}

.hardware-form textarea {
  resize: vertical;
  min-height: 130px;
}

.hardware-form input:focus,
.hardware-form select:focus,
.hardware-form textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.consent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 18px;
}

.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.consent-row label {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
}

.form-message {
  display: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #bbf7d0;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #fecaca;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.final-cta-section {
  padding-top: 50px;
}

.final-cta {
  padding: 42px 30px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 12px;
  color: #ffffff;
}

.final-cta p {
  margin: 0 0 24px;
  color: rgba(226, 232, 240, 0.8);
}

.center-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .service-hero-grid,
  .icon-card-grid,
  .steps-grid,
  .faq-grid,
  .compliance-grid,
  .equipment-grid,
  .hero-stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero-grid,
  .icon-card-grid,
  .steps-grid,
  .faq-grid,
  .compliance-grid,
  .equipment-grid,
  .hero-stat-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hardware-hero-enterprise {
    padding: 125px 0 70px;
  }

  .hero-info-card,
  .form-shell,
  .icon-feature-card,
  .step-card,
  .faq-card,
  .compliance-card {
    padding: 22px;
  }

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

  .btn {
    width: 100%;
  }
}

/* Hardware Removal Enterprise Page */
.hardware-hero-enterprise {
  position: relative;
  padding: 150px 0 95px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(14, 165, 233, 0.12), transparent 24%),
    linear-gradient(135deg, #020817 0%, #061126 42%, #020817 100%);
  overflow: hidden;
}

.hardware-hero-enterprise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
  pointer-events: none;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.service-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.05;
  color: #ffffff;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 26px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.45);
  color: #e2e8f0;
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.7);
}

.btn-full {
  width: 100%;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stat-card {
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.46);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.hero-stat-card span {
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-hero-card {
  display: flex;
  justify-content: flex-end;
}

.glass-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(8, 15, 32, 0.72);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(14px);
}

.hero-info-card {
  width: 100%;
  max-width: 430px;
  padding: 30px;
}

.hero-info-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.55rem;
}

.hero-info-card p {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.75;
}

.hero-check-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
  color: rgba(226, 232, 240, 0.84);
}

.hero-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
  font-size: 1.2rem;
  line-height: 1;
}

.hero-mini-note {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.48);
}

.hero-mini-note strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.hero-mini-note span {
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.6;
}

.service-section {
  padding: 90px 0;
  background: #020817;
}

.section-alt {
  background: linear-gradient(180deg, rgba(7, 16, 34, 0.98), rgba(2, 8, 23, 1));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.18;
}

.section-heading p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.8;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.icon-feature-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(10, 18, 36, 0.84);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.14);
  color: #93c5fd;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-feature-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

.icon-feature-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.75;
}

.steps-grid,
.faq-grid,
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card,
.faq-card,
.compliance-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(10, 18, 36, 0.82);
}

.step-card h3,
.faq-card h3,
.compliance-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

.step-card p,
.faq-card p,
.compliance-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.75;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
  font-weight: 800;
}

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

.equipment-item {
  padding: 18px 20px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
  font-weight: 600;
  text-align: center;
}

.narrow-container {
  max-width: 920px;
}

.form-shell {
  padding: 30px;
}

.hardware-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group label span,
.consent-row label span {
  color: #93c5fd;
}

.hardware-form input,
.hardware-form select,
.hardware-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.88);
  color: #f8fafc;
  font: inherit;
}

.hardware-form textarea {
  resize: vertical;
  min-height: 130px;
}

.hardware-form input:focus,
.hardware-form select:focus,
.hardware-form textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.consent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 18px;
}

.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.consent-row label {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
}

.form-message {
  display: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #bbf7d0;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #fecaca;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.final-cta-section {
  padding-top: 50px;
}

.final-cta {
  padding: 42px 30px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 12px;
  color: #ffffff;
}

.final-cta p {
  margin: 0 0 24px;
  color: rgba(226, 232, 240, 0.8);
}

.center-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .service-hero-grid,
  .icon-card-grid,
  .steps-grid,
  .faq-grid,
  .compliance-grid,
  .equipment-grid,
  .hero-stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero-grid,
  .icon-card-grid,
  .steps-grid,
  .faq-grid,
  .compliance-grid,
  .equipment-grid,
  .hero-stat-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hardware-hero-enterprise {
    padding: 125px 0 70px;
  }

  .hero-info-card,
  .form-shell,
  .icon-feature-card,
  .step-card,
  .faq-card,
  .compliance-card {
    padding: 22px;
  }

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

  .btn {
    width: 100%;
  }
}

/* Remote Support Page */
.center-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.remote-device-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.remote-device-card {
  padding: 28px;
}

.remote-device-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.6rem;
}

.remote-device-card p {
  margin: 0 0 24px;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.75;
}

.remote-linux-card {
  grid-column: 1 / -1;
}

.command-box {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.88);
  color: #38bdf8;
  font-family: monospace;
  font-size: 0.92rem;
  line-height: 1.8;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.remote-info-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .remote-device-grid,
  .remote-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .remote-linux-card {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .remote-device-grid,
  .remote-info-grid {
    grid-template-columns: 1fr;
  }

  .remote-linux-card {
    grid-column: auto;
  }
}

/* Network Support Hero Banner */
.network-hero-banner {
  padding: 130px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.10), transparent 24%),
    linear-gradient(135deg, #020817 0%, #061126 42%, #020817 100%);
}

.network-hero-shell {
  padding: 38px;
}

.network-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.network-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 1.02;
  color: #ffffff;
  max-width: 820px;
}

.network-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.network-hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.network-panel-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(10, 18, 36, 0.82);
}

.network-panel-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.45rem;
}

.network-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-check-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 24px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.7;
}

.network-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .network-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .network-hero-banner {
    padding: 115px 0 55px;
  }

  .network-hero-shell,
  .network-panel-card {
    padding: 22px;
  }

  .network-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

.network-hero-with-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 8, 23, 0.92), rgba(2, 8, 23, 0.82)),
    url('/assets/images/network-hero-bg.jpg') center center / cover no-repeat;
}

.network-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.20), transparent 30%),
    radial-gradient(circle at right center, rgba(14, 165, 233, 0.14), transparent 24%);
  pointer-events: none;
}

.network-hero-with-bg .container {
  position: relative;
  z-index: 1;
}

.network-hero-with-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 8, 23, 0.88), rgba(2, 8, 23, 0.78)),
    url('/assets/images/network-hero-bg.webp') center center / cover no-repeat;
}

.network-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.20), transparent 30%),
    radial-gradient(circle at right center, rgba(14, 165, 233, 0.14), transparent 24%);
  pointer-events: none;
}

.network-hero-with-bg .container {
  position: relative;
  z-index: 1;
}

.network-hero-banner {
  padding: 130px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.10), transparent 24%),
    linear-gradient(135deg, #020817 0%, #061126 42%, #020817 100%);
}

.network-hero-with-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 8, 23, 0.88), rgba(2, 8, 23, 0.78)),
    url('/assets/images/network-hero-bg.webp') center center / cover no-repeat;
}

.network-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.20), transparent 30%),
    radial-gradient(circle at right center, rgba(14, 165, 233, 0.14), transparent 24%);
  pointer-events: none;
}

.network-hero-with-bg .container {
  position: relative;
  z-index: 1;
}

.network-hero-shell {
  padding: 38px;
}

.network-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.network-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 1.02;
  color: #ffffff;
  max-width: 820px;
}

.network-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.network-hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.network-panel-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(10, 18, 36, 0.82);
}

.network-panel-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.45rem;
}

.network-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-check-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 24px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.7;
}

.network-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .network-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .network-hero-banner {
    padding: 115px 0 55px;
  }

  .network-hero-shell,
  .network-panel-card {
    padding: 22px;
  }

  .network-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Cybersecurity Hero Banner */
.cyber-hero-banner {
  padding: 130px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.10), transparent 24%),
    linear-gradient(135deg, #020817 0%, #061126 42%, #020817 100%);
}

.cyber-hero-with-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 8, 23, 0.90), rgba(2, 8, 23, 0.82)),
    url('/assets/images/cybersecurity.webp') center center / cover no-repeat;
}

.cyber-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at right center, rgba(56, 189, 248, 0.14), transparent 24%);
  pointer-events: none;
}

.cyber-hero-with-bg .container {
  position: relative;
  z-index: 1;
}

.cyber-hero-shell {
  padding: 38px;
}

.cyber-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.cyber-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 1.02;
  color: #ffffff;
  max-width: 820px;
}

.cyber-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cyber-hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.cyber-panel-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(10, 18, 36, 0.82);
}

.cyber-panel-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.45rem;
}

.cyber-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cyber-check-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 24px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.7;
}

.cyber-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .cyber-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cyber-hero-banner {
    padding: 115px 0 55px;
  }

  .cyber-hero-shell,
  .cyber-panel-card {
    padding: 22px;
  }

  .cyber-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Hardware Hero Background */
.hardware-hero-with-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 8, 23, 0.90), rgba(2, 8, 23, 0.82)),
    url('/assets/images/hardware.webp') center center / cover no-repeat;
}

.hardware-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at right center, rgba(56, 189, 248, 0.14), transparent 24%);
  pointer-events: none;
}

.hardware-hero-with-bg .container {
  position: relative;
  z-index: 1;
}
