:root {
  --tp-blue: #0057a8;
  --tp-lime: #97c900;
  --tp-dark: #172033;
  --tp-text: #263044;
  --tp-light: #f4f8fc;
  --tp-white: #ffffff;
  --tp-border: #e4ebf3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--tp-text);
  background: var(--tp-white);
}

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

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

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--tp-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo img {
  width: 190px;
  display: block;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--tp-blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 15px 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta,
.btn-primary {
  background: var(--tp-lime);
  color: #fff;
  box-shadow: 0 8px 22px rgba(151, 201, 0, .3);
}

.btn-outline {
  border: 1px solid var(--tp-blue);
  color: var(--tp-blue);
}

.btn-blue {
  background: var(--tp-blue);
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--tp-blue);
  font-size: 34px;
}

.hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 38%, rgba(255,255,255,.2) 62%),
    url('/assets/images/hero-printing.jpg') center right / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--tp-lime);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  color: var(--tp-dark);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--tp-blue);
}

.hero p {
  font-size: 20px;
  line-height: 1.55;
  max-width: 560px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 26px 0;
  color: var(--tp-blue);
  font-weight: 700;
}

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

.service-cards {
  padding: 34px 0 20px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--tp-border);
  padding: 34px;
  min-height: 245px;
  box-shadow: 0 18px 40px rgba(20, 40, 70, .08);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.icon.blue {
  background: var(--tp-blue);
}

.icon.lime {
  background: var(--tp-lime);
}

.card h2 {
  margin: 0 0 10px;
  color: var(--tp-dark);
  font-size: 20px;
}

.card p {
  line-height: 1.55;
}

.card a {
  color: var(--tp-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.advantages {
  padding: 34px 0;
  background: #fff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
}

.advantages-grid div {
  padding: 26px 24px;
  border-right: 1px solid var(--tp-border);
}

.advantages-grid div:last-child {
  border-right: 0;
}

.advantages strong {
  display: block;
  color: var(--tp-blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.advantages span {
  font-size: 14px;
}

.popular {
  background: linear-gradient(180deg, #f3f9ff 0%, #fff 100%);
  text-align: center;
  padding: 70px 0;
}

.section-label {
  color: var(--tp-lime);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.popular h2 {
  margin: 10px 0 34px;
  color: var(--tp-dark);
  font-size: 34px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.products-grid div {
  background: #fff;
  border: 1px solid var(--tp-border);
  padding: 24px 12px;
  min-height: 90px;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(20, 40, 70, .06);
}

.cta-section {
  background: var(--tp-blue);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin: 0 0 10px;
}

.cta-section p {
  margin-bottom: 28px;
  font-size: 18px;
}

.site-footer {
  background: var(--tp-dark);
  color: #fff;
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 900px) {
  .header-inner {
    height: 74px;
  }

  .logo img {
    width: 160px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
      url('/assets/images/hero-printing.jpg') center / cover no-repeat;
  }

  .hero-content {
    padding: 54px 0 110px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-features {
    display: none;
  }

  .service-cards {
    margin-top: -74px;
  }

  .cards-grid,
  .advantages-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
    padding: 26px;
  }

  .advantages {
    background: var(--tp-blue);
    color: #fff;
    padding: 0;
  }

  .advantages-grid {
    border: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid div {
    border-color: rgba(255,255,255,.18);
  }

  .advantages strong {
    color: #fff;
  }

  .footer-inner {
    flex-direction: column;
  }
}
