:root {
  color-scheme: dark;
  --navy: #061528;
  --ink: #0b1220;
  --panel: #0e2038;
  --panel-soft: #122845;
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #b9c6d8;
  --blue: #0d8cff;
  --cyan: #3bd8ff;
  --green: #46e6a1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 70%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1100;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-nav {
  background: rgba(6, 21, 40, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  object-fit: cover;
  border-radius: 0.5rem;
  background: #fff;
}

.navbar .nav-link {
  color: rgba(248, 250, 252, 0.78);
  font-weight: 700;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--white);
}

.btn {
  border-radius: 0.6rem;
  font-weight: 800;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 0;
  color: #04111f;
  box-shadow: 0 18px 42px rgba(13, 140, 255, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #04111f;
  background: linear-gradient(135deg, #27a1ff, #79e8ff);
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  padding: 0.65rem 1rem;
}

.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background:
    linear-gradient(120deg, rgba(6, 21, 40, 0.96) 0%, rgba(8, 33, 62, 0.9) 54%, rgba(8, 68, 95, 0.74) 100%),
    url("/images/itguyz-logo-wide.webp") center 18% / cover no-repeat;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
.section-title {
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 760px;
}

.lead {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.18rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics div,
.trust-item,
.mini-feature,
.step,
.contact-form,
.ticket-card {
  border: 1px solid var(--line);
  background: rgba(14, 32, 56, 0.76);
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  padding: 1rem;
  border-radius: 0.75rem;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--white);
  line-height: 1.25;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
}

.hero-image,
.feature-image {
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-console {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  border: 1px solid rgba(59, 216, 255, 0.34);
  border-radius: 0.75rem;
  background: rgba(4, 17, 31, 0.88);
  padding: 1rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.console-line {
  color: #d8f6ff;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.console-line + .console-line {
  margin-top: 0.45rem;
}

.pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(70, 230, 161, 0.65);
  animation: pulse 1.8s infinite;
  flex: 0 0 auto;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(70, 230, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 230, 161, 0); }
}

.trust-band {
  padding: 1.25rem 0;
  background: #eef7ff;
  color: var(--ink);
}

.trust-item {
  min-height: 76px;
  border-color: rgba(13, 140, 255, 0.18);
  background: #fff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  color: var(--ink);
  font-weight: 900;
}

.trust-item i {
  color: var(--blue);
  font-size: 1.35rem;
}

.section-padding {
  padding: 5.5rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.section-intro {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.service-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 40, 69, 0.96), rgba(11, 18, 32, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.service-card i,
.plan-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(13, 140, 255, 0.16);
  color: var(--cyan);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card h3,
.plan-card h3,
.step h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.65rem;
}

.service-card p,
.plan-card p,
.step p {
  color: var(--muted);
  margin: 0;
}

.feature-strip {
  padding: 5rem 0;
  background: #f5f9ff;
  color: var(--ink);
}

.feature-strip .eyebrow {
  color: #075fb3;
}

.feature-strip .section-intro,
.feature-strip .mini-feature {
  color: #314259;
}

.mini-feature {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-color: rgba(13, 140, 255, 0.14);
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  font-weight: 800;
}

.mini-feature i {
  color: #078a56;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.industry-grid span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: 800;
}

.industry-grid i {
  color: var(--cyan);
}

.plans-section {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.74), rgba(6, 21, 40, 1)),
    #07111f;
}

.featured-plan {
  border-color: rgba(59, 216, 255, 0.55);
  box-shadow: 0 22px 60px rgba(13, 140, 255, 0.22);
}

.process-section {
  background: #edf6fb;
  color: var(--ink);
}

.process-section .eyebrow {
  color: #075fb3;
}

.step {
  height: 100%;
  background: #fff;
  border-color: rgba(13, 140, 255, 0.15);
  border-radius: 0.75rem;
  color: var(--ink);
  padding: 1.25rem;
}

.step strong {
  color: var(--blue);
  display: block;
  margin-bottom: 1rem;
}

.step p {
  color: #4b5a6c;
}

.faq-accordion {
  --bs-accordion-bg: rgba(14, 32, 56, 0.78);
  --bs-accordion-color: var(--text);
  --bs-accordion-border-color: var(--line);
  --bs-accordion-btn-color: var(--text);
  --bs-accordion-btn-bg: rgba(14, 32, 56, 0.78);
  --bs-accordion-active-bg: rgba(13, 140, 255, 0.16);
  --bs-accordion-active-color: var(--white);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(59, 216, 255, 0.2);
}

.accordion-item {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.accordion-button {
  font-weight: 900;
}

.accordion-body {
  color: var(--muted);
}

.contact-section {
  padding: 5.5rem 0;
  background:
    linear-gradient(120deg, rgba(6, 21, 40, 0.98), rgba(7, 39, 66, 0.93)),
    url("/images/itguyz-tech-support.webp") center / cover no-repeat;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contact-points div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 800;
}

.contact-points i {
  color: var(--cyan);
}

.contact-form {
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-label {
  color: var(--text);
  font-weight: 800;
}

.form-control,
.form-select {
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(4, 17, 31, 0.86);
  color: var(--text);
  min-height: 3.2rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--cyan);
  background-color: rgba(4, 17, 31, 0.96);
  color: var(--text);
  box-shadow: 0 0 0 0.2rem rgba(59, 216, 255, 0.18);
}

.form-control::placeholder {
  color: #8ea0b8;
}

.form-select option {
  background: #0b1220;
  color: var(--text);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ffb4b4;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: #030b15;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-md-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 1rem 2rem;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(14, 32, 56, 0.88);
}

.brand {
  font-size: 1.45rem;
  font-weight: 900;
}

.brand span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.section-heading {
  margin: 2rem 0 1.25rem;
}

.section-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-weight: 900;
}

.contact {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: rgba(14, 32, 56, 0.78);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

.ticket-list {
  display: grid;
  gap: 1rem;
}

.ticket-card {
  border-radius: 0.75rem;
  padding: 1rem;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.ticket-card p {
  color: var(--muted);
  margin: 0.45rem 0;
}

.ticket-card strong {
  color: var(--text);
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 7rem;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

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

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

@media (max-width: 575.98px) {
  .hero-section .container,
  .hero-copy,
  .hero-visual,
  .hero-image,
  .feature-image {
    width: min(100%, 360px);
    max-width: min(100%, 360px);
  }

  h1 {
    font-size: 2rem;
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .section-padding,
  .contact-section {
    padding: 4rem 0;
  }

  .hero-copy .btn {
    width: 100%;
  }

  .status-console {
    position: static;
    margin-top: 1rem;
  }

  .contact-form {
    padding: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section .container,
  .hero-copy,
  .hero-visual,
  h1,
  .lead {
    max-width: 100%;
  }

  h1 {
    font-size: 2rem;
  }
}
