:root {
  --black: #050505;
  --charcoal: #161616;
  --ink: #20242c;
  --muted: #5d6675;
  --line: #e6e8ec;
  --soft: #f5f5f5;
  --white: #ffffff;
  --gold: #b08a2e;
  --gold-light: #caa34a;
  --gold-dark: #87681d;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(176, 138, 46, 0.42);
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  line-height: 1.15;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-light);
}

.hero,
.page-hero {
  padding: clamp(52px, 6vw, 90px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 75px);
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(5, 5, 5, 0.95) 0%, rgba(10, 10, 10, 0.84) 52%, rgba(5, 5, 5, 0.54) 100%),
    url("assets/it-support-hero.png") center right / cover,
    var(--black);
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(5, 5, 5, 0.95), rgba(22, 22, 22, 0.88)),
    radial-gradient(circle at 78% 20%, rgba(176, 138, 46, 0.22), transparent 32%),
    var(--black);
}

.page-hero.compact {
  min-height: 50vh;
}

.hero > *,
.page-hero > *,
.section > *,
.cta > *,
.site-footer > * {
  max-width: var(--max);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

p {
  margin-bottom: 12px;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.8vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

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

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  color: var(--black);
  background: var(--gold);
}

.primary:hover {
  background: var(--gold-light);
}

.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.secondary:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.dark-button {
  color: var(--black);
  border-color: var(--black);
}

.hero-card,
.panel,
.form-card {
  border-radius: 8px;
}

.hero-card {
  width: min(100%, 390px);
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(176, 138, 46, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.hero-card img {
  display: block;
  width: min(210px, 72%);
  margin: 0 auto 24px;
}

.hero-card h2 {
  font-size: 1.25rem;
}

.section {
  width: 100%;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 4vw, 56px);
}

.section > * {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 26px;
}

.section-title h2 {
  max-width: 820px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.simple,
.panel,
.form-card {
  padding: 26px;
}

.card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(5, 5, 5, 0.06);
}

.card.featured-card {
  overflow: hidden;
  padding: 0;
}

.card.featured-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card.featured-card div {
  padding: 24px;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.image-panel {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.16);
}

.image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.visual-list div {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
}

.visual-list strong {
  display: block;
  margin-bottom: 3px;
}

.card p,
.simple p,
.panel p,
.section p,
.prose p {
  color: var(--muted);
}

.card p:last-child,
.simple p:last-child,
.panel p:last-child,
.section p:last-child,
.prose p:last-child {
  margin-bottom: 0;
}

.card a,
.prose a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: none;
}

.dark-band {
  max-width: none;
  color: var(--white);
  background: var(--charcoal);
}

.dark-band .section-title,
.dark-band .card-grid,
.dark-band .feature-grid {
  max-width: var(--max);
}

.dark-band .simple {
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.dark-band .simple p,
.dark-band .feature-grid span {
  color: rgba(255, 255, 255, 0.72);
}

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

.feature-grid div {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 3px solid var(--gold);
}

.feature-grid strong {
  font-size: 1.02rem;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

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

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.dark-text li {
  color: var(--muted);
}

.cta {
  padding: clamp(42px, 6vw, 68px) clamp(18px, 4vw, 56px);
  text-align: center;
  color: var(--white);
  background: var(--black);
}

.cta > * {
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  color: rgba(255, 255, 255, 0.76);
}

.form-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 56px rgba(5, 5, 5, 0.07);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfd4dc;
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(176, 138, 46, 0.22);
  border-color: var(--gold);
}

.prose {
  max-width: 880px;
}

.site-footer {
  text-align: center;
  padding: 32px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--charcoal);
  border-top: 1px solid rgba(176, 138, 46, 0.38);
}

.site-footer .footer-links {
  margin-bottom: 10px;
}

.site-footer .footer-links a {
  display: inline;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  color: var(--gold-light);
}

.site-footer .copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .image-band,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    justify-self: start;
  }

  .card-grid.three,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .brand {
    min-width: 0;
  }

  .card-grid.three,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .actions,
  .button {
    width: 100%;
  }

}
