:root {
  --navy: #071d2f;
  --navy-2: #0d314b;
  --ink: #142033;
  --muted: #5f6f83;
  --line: #dce6ee;
  --soft: #f3f7fa;
  --white: #ffffff;
  --teal: #0f9f9a;
  --teal-dark: #087b78;
  --amber: #f5a623;
  --coral: #e86f51;
  --green: #3aa76d;
  --shadow: 0 18px 45px rgba(7, 29, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

a:hover,
a:focus {
  color: var(--teal-dark);
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

.container > *,
.card-grid > *,
.two-col > *,
.split-grid > *,
.process-grid > *,
.case-grid > *,
.value-grid > *,
.contact-grid > *,
.gallery-grid > *,
.footer-grid > * {
  min-width: 0;
}

.narrow {
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 29, 47, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  min-width: 0;
}

.brand-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.brand:hover,
.brand:focus {
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: var(--amber);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-check,
.nav-toggle {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--navy);
  background: var(--amber);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus,
.site-nav .nav-cta.active {
  color: var(--navy);
  background: #ffc04d;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  display: none !important;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: block !important;
}

.submenu li {
  display: block;
}

.submenu a {
  width: 100%;
  color: var(--ink);
}

.submenu a:hover,
.submenu a:focus,
.submenu a.active {
  color: var(--teal-dark);
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 120px 0;
}

.hero-image,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 47, 0.94) 0%, rgba(7, 29, 47, 0.78) 42%, rgba(7, 29, 47, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin-left: max(20px, calc((100vw - 1120px) / 2));
}

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

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.cta-band .eyebrow {
  color: var(--amber);
}

h1 {
  font-size: 4.7rem;
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 22px;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-lead,
.page-hero-content p,
.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 690px;
}

.lead {
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.btn-primary {
  color: var(--navy);
  background: var(--amber);
  border-color: var(--amber);
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--navy);
  background: #ffc04d;
}

.btn-secondary {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  margin-top: 24px;
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--white);
  background: var(--teal);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.btn-light:hover,
.btn-light:focus {
  color: var(--navy);
  background: #edf6f6;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  max-width: 680px;
}

.hero-metrics div {
  min-height: 110px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

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

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

.service-card,
.info-card,
.post-card,
.image-card,
.form-panel,
.case-card,
.value-grid article,
.process-grid article,
.gallery-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 29, 47, 0.06);
}

.service-card-link,
.info-card {
  display: block;
  height: 100%;
  padding: 28px;
}

.service-card p,
.info-card p,
.image-card p,
.post-card p,
.gallery-item p,
.value-grid p,
.process-grid p {
  color: var(--muted);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--teal-dark);
  font-weight: 800;
}

.two-col,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.two-col p + p,
.split-grid p + p {
  margin-top: 16px;
}

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

.process-grid article {
  padding: 26px;
}

.process-grid span {
  display: inline-block;
  color: var(--coral);
  font-weight: 800;
  margin-bottom: 18px;
}

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

.case-card {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.case-card p {
  color: var(--amber);
  font-weight: 800;
  margin-bottom: 14px;
}

.case-card strong {
  display: block;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 16px;
}

.case-card span {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.compact-hero {
  min-height: 440px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 47, 0.92), rgba(7, 29, 47, 0.46));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.page-hero-content h1 {
  font-size: 3.4rem;
}

.printer-hero .page-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 29, 47, 0.94) 0%, rgba(7, 29, 47, 0.68) 52%, rgba(7, 29, 47, 0.28) 100%);
}

.printer-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin-top: 34px;
}

.printer-hero-facts div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.printer-hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.printer-hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.printer-service-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.printer-service-panel h3 {
  margin-bottom: 18px;
}

.printer-problem-section .split-grid {
  align-items: start;
}

.printer-problem-section p {
  color: rgba(255, 255, 255, 0.78);
}

.printer-problem-list {
  display: grid;
  gap: 12px;
}

.printer-problem-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.printer-problem-list span {
  color: var(--amber);
  margin-top: 4px;
}

.printer-ready-list {
  margin-top: 24px;
}

.seo-hero .page-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 29, 47, 0.94) 0%, rgba(7, 29, 47, 0.7) 48%, rgba(7, 29, 47, 0.24) 100%);
}

.seo-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin-top: 34px;
}

.seo-hero-facts div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.seo-hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.seo-hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.seo-focus-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.seo-focus-panel h3 {
  margin-bottom: 18px;
}

.seo-signal-section .split-grid {
  align-items: start;
}

.seo-signal-section p {
  color: rgba(255, 255, 255, 0.78);
}

.seo-signal-list {
  display: grid;
  gap: 12px;
}

.seo-signal-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.seo-signal-list span {
  color: var(--amber);
  margin-top: 4px;
}

.seo-ready-list {
  margin-top: 24px;
}

.sem-hero .page-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 29, 47, 0.94) 0%, rgba(7, 29, 47, 0.7) 50%, rgba(7, 29, 47, 0.24) 100%);
}

.performance-hero .page-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 29, 47, 0.94) 0%, rgba(7, 29, 47, 0.68) 48%, rgba(7, 29, 47, 0.26) 100%);
}

.service-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin-top: 34px;
}

.service-hero-facts div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.service-hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.service-hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.service-focus-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.service-focus-panel h3 {
  margin-bottom: 18px;
}

.service-signal-section .split-grid {
  align-items: start;
}

.service-signal-section p {
  color: rgba(255, 255, 255, 0.78);
}

.service-signal-list {
  display: grid;
  gap: 12px;
}

.service-signal-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.service-signal-list span {
  color: var(--amber);
  margin-top: 4px;
}

.service-ready-list {
  margin-top: 24px;
}

.faq-layout {
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 29, 47, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-row span {
  color: var(--green);
}

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

.stacked-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stacked-item span {
  color: var(--teal-dark);
  margin-top: 4px;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.image-card > div {
  padding: 28px;
}

.image-card h2,
.post-card h2,
.gallery-item h2 {
  font-size: 1.55rem;
  line-height: 1.2;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-list li {
  padding: 6px 10px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green);
  font-family: FontAwesome;
}

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

.value-grid article {
  padding: 30px;
}

.gallery-grid {
  display: grid;
  gap: 28px;
}

.gallery-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gallery-item div {
  padding: 32px;
}

.post-card {
  overflow: hidden;
}

.post-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-cards div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-cards span {
  color: var(--teal-dark);
  margin-top: 4px;
}

.form-panel {
  padding: 30px;
}

.form-panel form {
  display: grid;
  gap: 18px;
}

.form-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 159, 154, 0.18);
  border-color: var(--teal);
}

.form-alert {
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(58, 167, 109, 0.35);
  border-radius: 8px;
  background: rgba(58, 167, 109, 0.1);
}

.form-alert p {
  color: var(--muted);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background: var(--teal-dark);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-content h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 36px;
  padding: 64px 0 44px;
}

.footer-brand {
  width: fit-content;
  margin-bottom: 20px;
}

.footer-copy {
  max-width: 360px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.site-footer address a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-cards p,
.site-footer address,
.site-footer address a {
  overflow-wrap: anywhere;
}

.footer-links a:hover,
.site-footer address a:hover,
.footer-bottom a:hover {
  color: var(--amber);
}

.site-footer address {
  font-style: normal;
}

.policy-content article + article {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  font-size: 1.55rem;
}

.policy-content p {
  color: var(--muted);
}

.policy-content p + p,
.policy-content .check-list,
.policy-contact p {
  margin-top: 14px;
}

.policy-contact {
  padding: 24px;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.policy-contact a {
  color: var(--teal-dark);
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.social-links a:hover,
.social-links a:focus {
  color: var(--navy);
  background: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-error {
  min-height: 520px;
}

@media (max-width: 1100px) {
  .card-grid.four,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 16px 20px 24px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-check:checked ~ .site-nav {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    width: 100%;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .submenu {
    position: static;
    display: grid !important;
    min-width: 0;
    margin: 6px 0 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .submenu a {
    color: rgba(255, 255, 255, 0.82);
  }

  .hero {
    min-height: 620px;
    padding: 96px 0;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .page-hero-content h1 {
    font-size: 2.7rem;
  }

  .printer-hero-facts,
  .seo-hero-facts,
  .service-hero-facts {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .two-col,
  .split-grid,
  .contact-grid,
  .gallery-item {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-item img {
    height: 280px;
    min-height: 260px;
  }

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

  .media-frame img {
    height: 360px;
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .card-grid.three,
  .card-grid.two,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-card-link,
  .info-card,
  .image-card > div,
  .gallery-item div,
  .post-card div,
  .form-panel,
  .value-grid article,
  .process-grid article,
  .printer-service-panel,
  .seo-focus-panel,
  .service-focus-panel {
    padding: 24px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 68px;
    gap: 14px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
    padding: 12px 14px 18px;
  }

  .hero {
    min-height: 0;
    padding: 86px 0 64px;
  }

  .hero-shade {
    background: rgba(7, 29, 47, 0.82);
  }

  .hero-content {
    margin-left: auto;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-lead,
  .page-hero-content p,
  .lead {
    font-size: 1rem;
  }

  .hero-metrics,
  .card-grid.four,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero,
  .compact-hero {
    min-height: 0;
    padding: 84px 0 72px;
  }

  .page-hero-content h1 {
    font-size: 2.1rem;
  }

  .printer-hero .page-hero-overlay {
    background: rgba(7, 29, 47, 0.84);
  }

  .seo-hero .page-hero-overlay {
    background: rgba(7, 29, 47, 0.84);
  }

  .sem-hero .page-hero-overlay,
  .performance-hero .page-hero-overlay {
    background: rgba(7, 29, 47, 0.84);
  }

  .printer-hero-facts div,
  .seo-hero-facts div,
  .service-hero-facts div {
    min-height: 0;
  }

  .media-frame img,
  .image-card img,
  .post-card img,
  .gallery-item img {
    height: 250px;
    min-height: 0;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand-logo {
    width: 140px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .submenu {
    margin-left: 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-content .btn,
  .form-panel .btn {
    width: 100%;
  }

  .stacked-item,
  .contact-cards div,
  .printer-problem-list div,
  .seo-signal-list div,
  .service-signal-list div {
    grid-template-columns: 1fr;
  }

  .feature-row {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.48rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  .page-hero-content h1 {
    font-size: 1.92rem;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .page-hero,
  .compact-hero {
    padding: 70px 0 58px;
  }

  .service-card-link,
  .info-card,
  .image-card > div,
  .gallery-item div,
  .post-card div,
  .form-panel,
  .value-grid article,
  .process-grid article,
  .printer-service-panel,
  .seo-focus-panel,
  .service-focus-panel {
    padding: 20px;
  }

  .footer-grid {
    padding: 48px 0 34px;
  }
}




.mobile-call-bar,
.print-need,
.service-strip {
  display: none;
}

.mobile-call-bar {
  align-items: center;
  gap: 12px;
  isolation: isolate;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(7, 29, 47, 0.24);
}

.mobile-call-bar::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.mobile-call-bar__full-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  font-size: 0;
}

.mobile-call-bar__icon-link,
.mobile-call-bar__copy,
.callImgGirl {
  position: relative;
  z-index: 2;
}

.mobile-call-bar__icon-link {
  display: flex;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: radial-gradient(circle at 35% 25%, #ffc04d 0, var(--amber) 42%, #b86c05 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 0 0 6px rgba(245, 166, 35, 0.18);
  animation: zoom-in-zoom-out 2.4s ease-out infinite;
}

.mobile-call-bar__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-call-bar__copy {
  min-width: 0;
  color: var(--white);
  text-align: left;
}

.mobile-call-bar__copy:hover,
.mobile-call-bar__copy:focus,
.mobile-call-bar__icon-link:hover,
.mobile-call-bar__icon-link:focus {
  color: var(--white);
}

.mobile-call-bar__eyebrow,
.mobile-call-bar__number {
  display: block;
}

.mobile-call-bar__eyebrow {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-call-bar__eyebrow small {
  display: inline-block;
  padding: 2px 5px;
  color: var(--navy);
  background: var(--amber);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
}

.mobile-call-bar__number {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.callImgGirl {
  display: block;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.wifi-symbol {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 36px;
}

.wifi-symbol .wifi-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-color: #ffffff;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-radius: 0 100% 0 0;
  opacity: 0;
  animation: wifianimation 2.5s infinite;
}

.wifi-symbol .wifi-circle.first {
  top: 0;
  left: 16px;
  width: 15px;
  height: 15px;
  animation-delay: 0.8s;
}

.wifi-symbol .wifi-circle.second {
  top: 5px;
  left: 14px;
  width: 12px;
  height: 12px;
  animation-delay: 0.4s;
}

.wifi-symbol .wifi-circle.third {
  top: 10px;
  left: 12px;
  width: 8px;
  height: 8px;
}

.wifi-symbol .fourth {
  display: inline-block;
  width: 30px;
  height: 36px;
  background: url("../images/animatePhoneWhite.png") left center / 20px no-repeat;
}

@media (max-width: 767px) {
  body.printer-service-page {
    padding-top: 66px;
    padding-bottom: 88px;
  }

  body.printer-service-page .site-header {
    display: none;
  }

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

  body.printer-service-page .mobile-call-bar {
    position: fixed;
    display: flex;
    min-height: 62px;
    padding: 7px 12px;
  }

  body.printer-service-page .mobile-call-bar--top {
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  body.printer-service-page .mobile-call-bar--bottom {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 9999;
    border-radius: 8px;
  }

  .print-need {
    display: block;
    padding: 26px 0;
    color: var(--ink);
    text-align: center;
    background: var(--soft);
  }

  .print-need h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .print-need p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
  }

  .call-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: var(--navy);
    background: var(--amber);
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.1;
    box-shadow: 0 10px 22px rgba(245, 166, 35, 0.24);
  }

  .service-strip {
    display: block;
    padding: 16px 0 24px;
    background: var(--white);
  }

  .service-grid {
    display: grid;
    gap: 12px;
  }

  .service-strip .service-card {
    position: relative;
    display: flex;
    min-height: 58px;
    align-items: center;
    padding: 13px 14px 13px 60px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(7, 29, 47, 0.08);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .service-card__icon {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--teal-dark);
    transform: translateY(-50%);
  }

  .service-card__icon::before,
  .service-card__icon::after {
    position: absolute;
    content: "";
    background: var(--white);
  }

  .service-card__icon::before {
    top: 10px;
    left: 8px;
    width: 18px;
    height: 10px;
    border-radius: 2px;
  }

  .service-card__icon::after {
    top: 21px;
    left: 11px;
    width: 12px;
    height: 5px;
    border-radius: 1px;
  }
}

@media (max-width: 430px) {
  .mobile-call-bar__deal-copy {
    display: none;
  }
}

@media (max-width: 380px) {
  .mobile-call-bar {
    gap: 9px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .mobile-call-bar__icon-link {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .mobile-call-bar__eyebrow {
    font-size: 10px;
  }

  .mobile-call-bar__number {
    font-size: 19px;
  }

  .callImgGirl {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .print-need {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .call-button {
    width: 100%;
  }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes wifianimation {
    0%,
    5% {
        opacity: 1;
    }

    6%,
    100% {
        opacity: 0.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
