:root {
  --ink: #171a20;
  --muted: #5f6775;
  --line: #dfe4ea;
  --paper: #f8f9fb;
  --white: #ffffff;
  --cyan: #00a3c7;
  --red: #e2403a;
  --yellow: #f3b431;
  --shadow: 0 18px 45px rgba(18, 29, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 228, 234, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--cyan));
  border-radius: 8px;
  font-size: 14px;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: #333b46;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 7vw, 88px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 20, 26, 0.9) 0%, rgba(18, 20, 26, 0.72) 44%, rgba(18, 20, 26, 0.28) 100%),
    url("assets/hero-print-production.png") center / cover no-repeat,
    linear-gradient(135deg, #242a31, #eef2f5);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--cyan) 0 33%, var(--red) 33% 66%, var(--yellow) 66% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7edff0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 24px;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 76px);
}

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

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

.service-card {
  min-height: 440px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.company-text p,
.company-panel p {
  color: var(--muted);
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 6vw, 74px);
  background: var(--white);
}

.company-text {
  max-width: 760px;
}

.company-text p {
  margin-top: 24px;
  font-size: 18px;
}

.company-panel {
  align-self: start;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background: #222831;
  border-radius: 8px;
}

.company-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.company-panel a {
  color: #8ce5f5;
}

.notice {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: #161a20;
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-link {
  min-height: 52px;
  padding: 13px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 24px clamp(20px, 6vw, 76px);
  color: #65707e;
  background: #11151a;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.site-footer a,
.privacy summary {
  color: #d7dde5;
}

.site-footer a {
  text-decoration: none;
}

.privacy {
  max-width: 1120px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.privacy summary {
  width: fit-content;
  cursor: pointer;
  font-weight: 800;
}

.privacy-content {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  color: #aeb6c2;
}

.privacy-content p {
  max-width: 980px;
  margin: 0;
}

@media (max-width: 980px) {
  .service-grid,
  .company {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 86vh;
    padding: 70px 20px 54px;
  }

  h1 {
    font-size: 38px;
  }

  .contact,
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

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