:root {
  --blue: #224ce8;
  --blue-bright: #2f5cff;
  --blue-dark: #1535ad;
  --navy: #08143f;
  --navy-soft: #101d4f;
  --mint: #88fcab;
  --mint-dark: #50db7a;
  --cyan: #43c9c7;
  --white: #ffffff;
  --ice: #f4f7ff;
  --line: #dfe6f7;
  --ink: #101633;
  --muted: #5d6680;
  --shadow-sm: 0 12px 30px rgba(12, 31, 105, 0.1);
  --shadow-lg: 0 30px 80px rgba(5, 18, 68, 0.24);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

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

.svg-sprite {
  position: absolute;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--mint);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled {
  background: rgba(8, 20, 63, 0.94);
  box-shadow: 0 14px 40px rgba(3, 11, 42, 0.24);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--white);
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(1, 8, 34, 0.25));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.main-menu > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: color 0.2s ease;
}

.main-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-menu > a:not(.nav-cta):hover {
  color: var(--white);
}

.main-menu > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--navy);
  background: var(--mint);
  border: 1px solid var(--mint);
  border-radius: 999px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 150px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 40%, rgba(67, 201, 199, 0.22), transparent 28%),
    linear-gradient(135deg, #173ac5 0%, #224ce8 52%, #163dce 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -41%;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.025), 0 0 0 220px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 90%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(136, 252, 171, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 170px;
  left: -150px;
  width: 300px;
  height: 300px;
}

.hero-orb-two {
  top: 240px;
  left: -90px;
  width: 180px;
  height: 180px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--mint);
}

.hero h1 {
  max-width: 640px;
  margin: 22px 0 22px;
  font-size: clamp(3.6rem, 6vw, 5.65rem);
  font-weight: 700;
}

.hero h1 em {
  display: inline;
  color: var(--mint);
  font-style: normal;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg,
.text-link svg,
.map-card > a svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--navy);
  background: var(--mint);
  box-shadow: 0 14px 30px rgba(71, 224, 116, 0.22);
}

.button-primary:hover {
  background: var(--white);
  box-shadow: 0 18px 38px rgba(5, 18, 68, 0.22);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(8, 20, 63, 0.18);
}

.button-dark:hover {
  background: var(--blue);
}

.button-white {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 29, 90, 0.12);
}

.button-white:hover {
  color: var(--navy);
  background: var(--mint);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 550px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  min-height: 62px;
  padding-right: 18px;
}

.hero-proof div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-image-wrap {
  position: absolute;
  z-index: 2;
  inset: -25px -85px -45px -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap img {
  width: min(100%, 610px);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 45px 50px rgba(4, 13, 51, 0.4));
  animation: heroFloat 5s ease-in-out infinite;
}

.tech-ring {
  position: absolute;
  top: 50%;
  left: 51%;
  border: 1px solid rgba(136, 252, 171, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 480px;
  height: 480px;
  box-shadow: inset 0 0 70px rgba(67, 201, 199, 0.08);
}

.ring-two {
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation: spin 30s linear infinite;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(4, 15, 58, 0.24);
  backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 105px;
  right: -12px;
}

.floating-card-bottom {
  bottom: 58px;
  left: -22px;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 0.72rem;
}

.floating-card strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: #3fdb79;
  border: 3px solid #cbf8d9;
  border-radius: 50%;
  box-sizing: content-box;
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: #e8edff;
  border-radius: 11px;
}

.floating-icon svg {
  width: 20px;
  height: 20px;
}

.quick-contact {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1px 0.68fr;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
  padding: 21px 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.quick-contact > a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.quick-contact > a:hover .quick-icon {
  color: var(--navy);
  background: var(--mint);
  transform: translateY(-2px);
}

.quick-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: #ecf0ff;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quick-icon svg {
  width: 23px;
  height: 23px;
}

.quick-contact small,
.quick-contact strong {
  display: block;
}

.quick-contact small {
  color: var(--muted);
  font-size: 0.73rem;
}

.quick-contact strong {
  overflow: hidden;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.08rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-divider {
  width: 1px;
  height: 46px;
  background: var(--line);
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-light {
  padding-top: 142px;
  background: var(--ice);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 50px;
}

.section-kicker {
  color: var(--blue);
}

.section-heading h2,
.process-copy h2,
.reviews-heading h2,
.location-copy h2,
.final-cta h2,
.pickup-layout h2 {
  margin: 12px 0 0;
  font-size: clamp(2.55rem, 4vw, 4.15rem);
  font-weight: 700;
}

.section-heading > p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(34, 76, 232, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(12, 31, 105, 0.16);
}

.feature-card-accent {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(136, 252, 171, 0.18), transparent 34%),
    var(--blue);
  border-color: transparent;
}

.feature-card-accent p,
.feature-card-accent .feature-number {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card-accent .feature-icon {
  color: var(--navy);
  background: var(--mint);
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #aeb7cf;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 46px;
  place-items: center;
  color: var(--blue);
  background: #edf1ff;
  border-radius: 18px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 1.62rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.services-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(67, 201, 199, 0.13), transparent 26%),
    var(--navy);
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  opacity: 0.35;
  background-image:
    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: 54px 54px;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.section-heading-light .section-kicker {
  color: var(--mint);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--mint);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 34px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
}

.service-card:hover {
  background: rgba(34, 76, 232, 0.4);
}

.service-tag {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--mint);
  border: 1px solid rgba(136, 252, 171, 0.32);
  border-radius: 50%;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card h3 {
  max-width: 280px;
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.service-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover .service-line {
  transform: scaleX(1);
}

.printer-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(34, 76, 232, 0.08), transparent 28%),
    var(--ice);
}

.printer-section::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(34, 76, 232, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(34, 76, 232, 0.025), 0 0 0 160px rgba(34, 76, 232, 0.018);
  pointer-events: none;
}

.printer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.printer-copy h2,
.faq-heading h2 {
  margin: 12px 0 22px;
  font-size: clamp(2.55rem, 4vw, 4.15rem);
  font-weight: 700;
}

.printer-copy > p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.printer-highlight {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  max-width: 510px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(34, 76, 232, 0.2);
}

.printer-highlight > svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--mint);
}

.printer-highlight > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.printer-highlight strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.18rem;
  line-height: 1.1;
}

.printer-highlight div span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.printer-glow {
  position: absolute;
  top: -55px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: rgba(136, 252, 171, 0.16);
  border-radius: 50%;
}

.printer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.printer-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(34, 76, 232, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.printer-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 110px;
  height: 110px;
  background: #edf1ff;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.printer-card:hover {
  border-color: rgba(34, 76, 232, 0.24);
  box-shadow: 0 24px 55px rgba(12, 31, 105, 0.16);
  transform: translateY(-7px);
}

.printer-card:hover::after {
  background: rgba(136, 252, 171, 0.35);
  transform: scale(1.2);
}

.printer-card > span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--blue);
  background: #edf1ff;
  border-radius: 13px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.printer-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  font-size: 1.45rem;
}

.printer-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.process-image {
  position: relative;
  min-height: 610px;
}

.process-image::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 57%;
  height: 48%;
  background: var(--mint);
  border-radius: 30px;
}

.process-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  width: 190px;
  padding: 22px 24px;
  color: var(--white);
  background: var(--blue);
  border: 5px solid var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.image-badge strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.image-badge span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.3;
}

.process-copy h2 {
  max-width: 600px;
}

.process-intro {
  max-width: 580px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 1.03rem;
}

.steps-list {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 19px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: #edf1ff;
  border-radius: 13px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}

.steps-list h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.pickup-strip {
  padding: 64px 0;
  background: var(--mint);
}

.pickup-layout {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.pickup-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 26px;
}

.pickup-icon svg {
  width: 48px;
  height: 48px;
}

.pickup-layout .section-kicker {
  color: var(--blue-dark);
}

.pickup-layout h2 {
  margin-top: 5px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.pickup-layout p {
  max-width: 590px;
  margin: 8px 0 0;
  color: #284338;
}

.reviews-section {
  background: var(--ice);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.google-g {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #4285f4;
  background: #f2f6ff;
  border-radius: 13px;
  font-size: 1.45rem;
  font-weight: 700;
}

.google-score div {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #ffb400;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.google-score small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.review-card {
  min-height: 320px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.review-card-featured {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-12px);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue);
  background: #edf1ff;
  border-radius: 50%;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}

.review-card-featured .review-avatar {
  color: var(--navy);
  background: var(--mint);
}

.review-card blockquote {
  margin: 36px 0 34px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
}

.review-card footer {
  display: flex;
  flex-direction: column;
}

.review-card footer strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.76rem;
}

.review-card-featured footer span {
  color: rgba(255, 255, 255, 0.64);
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
}

.reviews-cta p {
  margin: 0;
  color: var(--muted);
}

.text-link-blue {
  color: var(--blue);
}

.text-link-blue:hover {
  color: var(--navy);
}

.brands-section {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 20, 63, 0.18), transparent 35%),
    var(--blue);
}

.brands-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(450px, 1.35fr);
  align-items: center;
  gap: 70px;
}

.brands-layout h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.brands-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.section-kicker-mint {
  color: var(--mint);
}

.brands-layout img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  opacity: 0.96;
}

.gallery-section {
  overflow: hidden;
  background: var(--white);
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -230px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(34, 76, 232, 0.08), transparent 68%);
  pointer-events: none;
}

.gallery-heading {
  position: relative;
  z-index: 1;
}

.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 215px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  text-align: left;
}

.gallery-item-featured {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 5;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(5, 13, 44, 0.9));
  pointer-events: none;
}

.gallery-item > span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}

.gallery-item strong,
.gallery-item small {
  display: block;
}

.gallery-item strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  text-align: right;
}

.gallery-item:hover img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.gallery-item:focus-visible {
  outline-color: var(--blue);
}

.gallery-dialog {
  width: min(92vw, 1180px);
  max-width: none;
  max-height: 92vh;
  overflow: visible;
  padding: 14px;
  color: var(--white);
  background: #050d2c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(2, 7, 27, 0.55);
}

.gallery-dialog::backdrop {
  background: rgba(3, 8, 29, 0.88);
  backdrop-filter: blur(8px);
}

.gallery-dialog[open] {
  animation: galleryDialogIn 0.24s ease-out;
}

.gallery-dialog figure {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.gallery-dialog figure img {
  width: 100%;
  max-height: calc(92vh - 76px);
  object-fit: contain;
  background: #03091f;
  border-radius: 15px;
}

.gallery-dialog figcaption {
  min-height: 38px;
  padding: 12px 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  text-align: center;
}

.gallery-dialog-close,
.gallery-dialog-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: rgba(8, 20, 63, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(2, 7, 27, 0.3);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.gallery-dialog-close:hover,
.gallery-dialog-arrow:hover {
  color: var(--navy);
  background: var(--mint);
}

.gallery-dialog-close {
  top: -18px;
  right: -18px;
  font-size: 1.8rem;
}

.gallery-dialog-arrow {
  top: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
}

.gallery-dialog-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.gallery-dialog-previous {
  left: 28px;
}

.gallery-dialog-next {
  right: 28px;
}

body.gallery-open {
  overflow: hidden;
}

.faq-section {
  background: var(--ice);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 9px 24px rgba(12, 31, 105, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(34, 76, 232, 0.22);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 23px 66px 23px 24px;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue);
  background: #edf1ff;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--navy);
  background: var(--mint);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.location-section {
  background: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(55px, 7vw, 90px);
}

.location-copy > p {
  max-width: 520px;
  margin: 24px 0 32px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list > a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 17px;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.contact-list > a:hover {
  background: var(--ice);
  border-color: var(--line);
  transform: translateX(5px);
}

.contact-list > a > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  background: #edf1ff;
  border-radius: 14px;
}

.contact-list svg {
  width: 24px;
  height: 24px;
}

.contact-list small,
.contact-list strong,
.contact-list p {
  display: block;
}

.contact-list small {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-list strong {
  margin-top: 1px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.12rem;
}

.contact-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.map-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 530px;
  border: 0;
  filter: saturate(0.8) contrast(1.03);
}

.map-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--blue);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}

.map-card > a:hover {
  background: var(--blue-dark);
}

.final-cta {
  padding: 0 0 110px;
  background: var(--white);
}

.final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  min-height: 310px;
  overflow: hidden;
  padding: 62px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(136, 252, 171, 0.15), transparent 26%),
    var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.final-cta-card > *:not(.final-cta-pattern) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 750px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.final-cta-pattern {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.site-footer {
  color: var(--white);
  background: #050d2c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 1fr 1fr;
  gap: 55px;
  padding: 82px 0 62px;
}

.footer-brand .brand img {
  width: 68px;
  height: 68px;
}

.footer-brand > p {
  max-width: 310px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin: 8px 0 12px;
  font-size: 1.16rem;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--mint);
}

.footer-action .text-link {
  margin-top: 8px;
  color: var(--mint);
  font-size: 0.94rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.footer-bottom a:hover {
  color: var(--mint);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.privacy-page .site-header {
  background: rgba(8, 20, 63, 0.96);
  box-shadow: 0 10px 30px rgba(5, 13, 44, 0.18);
}

.policy-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.policy-hero {
  padding: 170px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(136, 252, 171, 0.16), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--blue-dark));
}

.policy-hero h1 {
  max-width: 780px;
  margin: 18px 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.policy-hero p {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.policy-hero small {
  color: rgba(255, 255, 255, 0.58);
}

.policy-section {
  padding: 90px 0 110px;
  background: var(--ice);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 2fr);
  align-items: start;
  gap: 54px;
}

.policy-summary {
  position: sticky;
  top: 118px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.policy-summary strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
}

.policy-summary p,
.policy-summary a {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-summary a {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
}

.policy-content {
  padding: 48px clamp(26px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.policy-content h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

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

.policy-content ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.policy-content li + li {
  margin-top: 9px;
}

.policy-back {
  margin-top: 46px;
}

.policy-footer .footer-bottom {
  min-height: 96px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 20px 0 15px;
  color: #0a4323;
  background: var(--mint);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(8, 20, 63, 0.24);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-delay-short {
  transition-delay: 0.1s;
}

.reveal-delay {
  transition-delay: 0.2s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes galleryDialogIn {
  from { opacity: 0; transform: translateY(12px) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .main-menu {
    gap: clamp(10px, 1.2vw, 16px);
  }

  .main-menu > a:not(.nav-cta) {
    font-size: 0.95rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 6vw, 4.8rem);
  }

  .hero-image-wrap {
    right: -100px;
  }

  .floating-card-top {
    right: -4px;
  }

  .floating-card-bottom {
    left: -5px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.7fr 1fr;
  }

  .footer-action {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    min-height: 80px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 7px;
    padding: 100px 32px 44px;
    visibility: hidden;
    background: rgba(5, 13, 44, 0.98);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .main-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-menu > a:not(.nav-cta) {
    padding: 13px 0;
    font-size: 1.5rem;
    text-align: center;
  }

  .nav-cta {
    width: min(100%, 360px);
    min-height: 54px;
    margin: 20px auto 0;
  }

  .policy-nav {
    width: auto;
    min-height: 46px;
    margin: 0;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

  .hero {
    min-height: auto;
    padding: 135px 0 75px;
  }

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

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

  .hero-copy > p {
    max-width: 650px;
  }

  .hero-visual {
    min-height: 560px;
    margin-top: -35px;
  }

  .hero-image-wrap {
    inset: -30px -30px -15px;
  }

  .hero-image-wrap img {
    max-height: 580px;
  }

  .floating-card-top {
    top: 80px;
    right: 8%;
  }

  .floating-card-bottom {
    bottom: 45px;
    left: 8%;
  }

  .quick-contact {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 0;
  }

  .quick-divider {
    width: 100%;
    height: 1px;
  }

  .section-heading,
  .process-layout,
  .location-layout,
  .brands-layout,
  .printer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 20px;
  }

  .feature-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:last-child,
  .review-card:last-child {
    grid-column: 1 / -1;
  }

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

  .printer-layout,
  .faq-layout {
    gap: 48px;
  }

  .printer-copy {
    max-width: 720px;
  }

  .faq-heading {
    position: static;
    max-width: 720px;
  }

  .process-layout {
    gap: 70px;
  }

  .process-image {
    min-height: 560px;
    width: min(100%, 650px);
  }

  .pickup-layout {
    grid-template-columns: 80px 1fr;
  }

  .pickup-layout .button {
    grid-column: 2;
    justify-self: start;
  }

  .reviews-heading {
    align-items: flex-start;
  }

  .review-card-featured {
    transform: none;
  }

  .brands-layout {
    gap: 38px;
  }

  .brands-layout img {
    max-width: 780px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 3;
  }

  .gallery-item-featured {
    grid-column: span 6;
    grid-row: span 2;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 6;
  }

  .location-layout {
    gap: 48px;
  }

  .map-card iframe {
    height: 440px;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta-card .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-copy {
    display: none;
  }

  .policy-nav {
    padding-inline: 15px;
    font-size: 0.82rem;
  }

  .policy-hero {
    padding: 130px 0 70px;
  }

  .policy-section {
    padding: 60px 0 80px;
  }

  .policy-layout {
    gap: 28px;
  }

  .policy-summary {
    padding: 24px;
  }

  .policy-content {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 0;
  }

  .hero-proof div {
    min-width: 0;
    padding-right: 10px;
  }

  .hero-proof div + div {
    padding-left: 11px;
  }

  .hero-proof strong {
    font-size: 1.38rem;
  }

  .hero-proof span {
    font-size: 0.68rem;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 0;
  }

  .hero-image-wrap {
    inset: -15px -65px -5px;
  }

  .hero-image-wrap img {
    max-height: 460px;
  }

  .ring-one {
    width: 350px;
    height: 350px;
  }

  .ring-two {
    width: 270px;
    height: 270px;
  }

  .floating-card {
    min-width: 0;
    max-width: 205px;
    padding: 11px 13px;
  }

  .floating-card-top {
    top: 35px;
    right: -3px;
  }

  .floating-card-bottom {
    bottom: 16px;
    left: -2px;
  }

  .floating-card strong {
    font-size: 0.9rem;
  }

  .quick-contact {
    padding: 18px;
  }

  .quick-contact strong {
    font-size: 0.94rem;
  }

  .section {
    padding: 86px 0;
  }

  .section-light {
    padding-top: 105px;
  }

  .section-heading h2,
  .process-copy h2,
  .reviews-heading h2,
  .location-copy h2,
  .final-cta h2,
  .printer-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.3rem);
  }

  .feature-grid,
  .services-grid,
  .reviews-grid,
  .printer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:last-child,
  .review-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 295px;
    padding: 28px;
  }

  .feature-icon {
    margin-bottom: 36px;
  }

  .service-card {
    min-height: 245px;
    padding: 28px;
  }

  .printer-card {
    min-height: 220px;
    padding: 27px;
  }

  .process-image {
    min-height: 440px;
  }

  .process-image::before {
    top: -12px;
    right: -10px;
  }

  .image-badge {
    right: -7px;
    bottom: 22px;
    width: 165px;
    padding: 18px;
  }

  .steps-list li {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .pickup-strip {
    padding: 54px 0;
  }

  .pickup-layout {
    grid-template-columns: 1fr;
  }

  .pickup-layout .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .reviews-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .google-score {
    width: 100%;
  }

  .reviews-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brands-section {
    padding: 68px 0;
  }

  .brands-layout {
    grid-template-columns: 1fr;
  }

  .brands-layout img {
    min-height: 120px;
    object-fit: contain;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 265px;
    gap: 12px;
  }

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item-featured {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-item > span {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .gallery-item small {
    display: none;
  }

  .gallery-dialog {
    width: 94vw;
    max-height: 88vh;
    padding: 8px;
    border-radius: 18px;
  }

  .gallery-dialog figure img {
    max-height: calc(88vh - 66px);
    border-radius: 12px;
  }

  .gallery-dialog-close {
    top: 16px;
    right: 16px;
  }

  .gallery-dialog-arrow {
    top: auto;
    bottom: 58px;
    transform: none;
  }

  .gallery-dialog-arrow:hover {
    transform: scale(1.06);
  }

  .gallery-dialog-previous {
    left: 18px;
  }

  .gallery-dialog-next {
    right: 18px;
  }

  .map-card iframe {
    height: 360px;
  }

  .final-cta {
    padding-bottom: 82px;
  }

  .final-cta-card {
    min-height: 0;
    padding: 38px 26px;
    border-radius: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 65px 0 45px;
  }

  .footer-action {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 105px;
    gap: 8px;
    padding: 24px 0 88px;
  }

  .footer-bottom-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .policy-footer .footer-bottom {
    padding-bottom: 30px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
