/* ==========================================================
   Atiq Printers — Premium Printing Press Karachi
   White background · Editorial luxury · Electric blue accent
   ========================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink: #0a0d1f;            /* deep navy ink for text */
  --ink-2: #161a36;
  --ink-3: #232743;
  --paper: #ffffff;          /* WHITE background */
  --paper-2: #f7f7f9;        /* very light grey for alt sections */
  --paper-3: #ffffff;
  --line: rgba(10, 13, 31, 0.10);
  --line-2: rgba(10, 13, 31, 0.06);
  --muted: rgba(10, 13, 31, 0.62);
  --muted-2: rgba(10, 13, 31, 0.48);

  --blue: #2540ff;           /* signature electric blue from logo */
  --blue-2: #3b5bff;
  --blue-3: #1a2ebd;
  --blue-soft: rgba(37, 64, 255, 0.08);

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 13, 31, 0.05), 0 4px 14px rgba(10, 13, 31, 0.04);
  --shadow-md: 0 10px 30px rgba(10, 13, 31, 0.08), 0 2px 8px rgba(10, 13, 31, 0.04);
  --shadow-lg: 0 30px 80px rgba(10, 13, 31, 0.16), 0 6px 20px rgba(10, 13, 31, 0.06);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
  border-radius: 6px;
  font-weight: 500;
}
.skip-link:focus { left: 8px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -0.01em; }
em { font-style: italic; font-variation-settings: "SOFT" 60, "WONK" 1; color: var(--blue); }
p { margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 26px;
}
.eyebrow__dot {
  width: 8px; height: 8px; background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 64, 255, 0.15);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 64, 255, 0.15); }
  50%      { box-shadow: 0 0 0 9px rgba(37, 64, 255, 0); }
}

/* Section heads */
.section-head { max-width: 820px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__num {
  display: inline-block;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted-2);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.section-head--center .section-head__num { display: inline-block; border-bottom: none; padding-bottom: 0; padding: 6px 14px; border: 1px solid var(--line); border-radius: 100px; }
.section-head__title { font-size: clamp(1.9rem, 4.4vw, 3.4rem); }
.section-head__sub { margin-top: 22px; font-size: 1.05rem; color: var(--muted); max-width: 60ch; }
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-radius: 100px;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  position: relative;
  border: 1px solid transparent;
}
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--ink); color: white;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 64, 255, 0.4); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: white; transform: translateY(-2px); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink); color: rgba(255,255,255,0.92);
  font-size: 0.8rem; letter-spacing: 0.04em;
  position: relative; z-index: 30;
}
.announce__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.announce__pill {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 3px 10px; border-radius: 100px; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.announce__link { color: inherit; transition: color .2s var(--ease); }
.announce__link:hover { color: var(--blue-2); }
.announce__sep { opacity: 0.4; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 25;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 28px;
}
.brand {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  height: 56px; width: auto; max-width: 200px;
  object-fit: contain;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--blue);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { width: 100%; }

.header__cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: white;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(50px, 8vw, 110px) 0 0;
  overflow: hidden;
  background: var(--paper);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line-2) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-2) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 75%);
  opacity: 0.6;
}
.hero__glow {
  position: absolute; top: -10%; right: -10%;
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(37, 64, 255, 0.14) 0%, transparent 65%);
  filter: blur(40px);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding-bottom: clamp(50px, 8vw, 100px);
}
.hero__copy { position: relative; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 24px;
}
.hero__title em {
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero__lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 26px;
  line-height: 1.6;
}
.hero__highlights {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-bottom: 32px;
  font-size: 0.92rem; color: var(--ink);
  font-weight: 500;
}
.hero__highlights li { color: var(--ink); }
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero visual — overlapping cards */
.hero__visual {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  max-height: 600px;
}
.hero__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-lg);
  transition: transform .6s var(--ease);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--1 {
  width: 70%; aspect-ratio: 16/9;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 3;
  animation: floatA 8s ease-in-out infinite;
}
.hero__card--2 {
  width: 60%; aspect-ratio: 16/9;
  top: 32%; right: 0;
  transform: rotate(4deg);
  z-index: 2;
  animation: floatB 9s ease-in-out infinite;
}
.hero__card--3 {
  width: 56%; aspect-ratio: 16/9;
  bottom: 0; left: 14%;
  transform: rotate(-1deg);
  z-index: 1;
  animation: floatC 10s ease-in-out infinite;
}
@keyframes floatA { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@keyframes floatB { 0%,100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-10px); } }
@keyframes floatC { 0%,100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-8px); } }

.hero__badge {
  position: absolute;
  top: 4%; right: -2%;
  background: var(--ink); color: white;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 4;
  box-shadow: var(--shadow-md);
  max-width: 60%;
  text-align: center;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex; gap: 28px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
.marquee__track span:nth-child(odd) { color: var(--blue-2); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about__lead p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
}
.about__lead p:first-of-type::first-letter {
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--blue);
  font-weight: 500;
}
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pillar {
  padding: 26px 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); border-color: var(--blue); background: white; }
.pillar__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue);
  border-radius: 8px;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 6px; font-size: 1.1rem; }
.pillar p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* ---------- SERVICES ---------- */
.services {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--ink);
  color: white;
  position: relative;
}
.services .section-head__num { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.15); }
.services .section-head__sub { color: rgba(255,255,255,0.65); }
.services em { color: var(--blue-2); }
.services::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37, 64, 255, 0.18), transparent 65%);
  filter: blur(30px);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--ink);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background .4s var(--ease);
}
.service-card:hover { background: var(--ink-2); }
.service-card__num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.service-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 4px;
  line-height: 1.15;
}
.service-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.55;
}
.service-card__list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 4px;
}
.service-card__list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.service-card__cta {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--blue-2);
  font-weight: 500;
  letter-spacing: 0.02em;
  align-self: flex-start;
  transition: color .3s var(--ease);
}
.service-card__cta:hover { color: white; }
.service-card--feature { background: var(--blue); }
.service-card--feature:hover { background: var(--blue-3); }
.service-card--feature h3, .service-card--feature .service-card__num { color: white; }
.service-card--feature p, .service-card--feature .service-card__list li { color: rgba(255,255,255,0.85); }
.service-card--feature .service-card__list { border-color: rgba(255,255,255,0.2); }
.service-card--feature .service-card__cta { color: white; }
.service-card--alt { background: var(--ink-3); }

/* ---------- PORTFOLIO ---------- */
.portfolio {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.port-item {
  margin: 0;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.port-item:hover { transform: translateY(-4px); }
.port-item__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  margin-bottom: 14px;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.port-item:hover .port-item__img { box-shadow: var(--shadow-lg); border-color: var(--blue); }
.port-item__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.port-item:hover .port-item__img img { transform: scale(1.04); }
.port-item--tall .port-item__img { aspect-ratio: 4/5; }
.port-item--wide { grid-column: span 2; }
.port-item--wide .port-item__img { aspect-ratio: 16/9; }

.port-item figcaption {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.port-item figcaption h3 {
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.port-item figcaption p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}
.port-item__price {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 2px;
}

.portfolio__cta {
  margin-top: 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.portfolio__cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
}

/* ---------- INDUSTRIES ---------- */
.industries {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.industries__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.industries__list li {
  padding: 13px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.industries__list li:hover {
  background: var(--ink); color: white; border-color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- WHY ---------- */
.why {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  padding: 36px 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.why-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 0;
  background: var(--blue);
  transition: height .4s var(--ease);
  z-index: 0;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--blue); background: white; }
.why-card:hover::before { height: 4px; }
.why-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.why-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.why-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.55; }

/* ---------- PROCESS ---------- */
.process {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process__list::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%; top: 58px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ink) 10%, var(--ink) 90%, transparent);
  opacity: 0.25;
}
.process-step {
  position: relative;
  padding: 0 16px;
  text-align: left;
}
.process-step__num {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  background: white;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--blue);
  margin: 30px 0 22px 0;
  position: relative;
  z-index: 1;
}
.process-step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ---------- SEO LONG-FORM CONTENT ---------- */
.seo-content {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper);
}
.seo-content__inner {
  max-width: 920px;
  margin: 0 auto;
}
.seo-content__body p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}
.seo-content__body strong { color: var(--blue); font-weight: 500; }
.seo-content__keywords {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.seo-content__keywords strong {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-right: 12px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 8px;
}
.seo-content__keywords span {
  display: inline-block;
  padding: 6px 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.seo-content__keywords span:hover { background: var(--blue); color: white; border-color: var(--blue); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  margin: 0;
  padding: 36px 30px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  position: relative;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.quote:hover { background: white; border-color: var(--blue); }
.quote::before {
  content: "“";
  position: absolute;
  top: -10px; left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--blue);
  line-height: 1;
}
.quote__stars {
  color: var(--blue);
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
.quote__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--ink);
  flex-grow: 1;
}
.quote footer { font-size: 0.88rem; }
.quote footer strong { display: block; color: var(--ink); }
.quote footer span { display: block; color: var(--muted); margin-top: 2px; }

/* ---------- QUOTE FORM SECTION ---------- */
#quote {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--ink);
  color: white;
}
#quote .section-head__num { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.15); }
#quote em { color: var(--blue-2); }
.quote-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.quote-section__copy p {
  color: rgba(255,255,255,0.7);
  margin: 22px 0 36px;
  font-size: 1.02rem;
  max-width: 44ch;
}
.quote-section__contacts {
  display: flex; flex-direction: column; gap: 12px;
}
.quote-section__contact {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.quote-section__contact:hover { border-color: var(--blue-2); background: rgba(37, 64, 255, 0.1); }
.quote-section__contact-label {
  font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
}
.quote-section__contact-value {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 500;
  color: white;
}

/* Form */
.quote-section__form {
  background: white;
  color: var(--ink);
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-lg);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field .optional { color: var(--muted-2); font-weight: 400; }
.field input,
.field select,
.field textarea {
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  font-family: var(--font-body);
  width: 100%;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
  margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(70px, 10vw, 140px) 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq__list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform .35s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-item__body { padding: 0 0 22px 0; max-width: 70ch; }
.faq-item__body p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.contact__copy p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 50ch;
  margin: 22px 0 32px;
}
.contact__details {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact__details li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.contact__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  padding-top: 4px;
}
.contact__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
a.contact__value:hover { color: var(--blue); }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  background: var(--paper-2);
}
.contact__map iframe { display: block; width: 100%; height: 100%; min-height: 460px; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--blue);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 40%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.final-cta__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.final-cta__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-bottom: 18px;
  color: white;
}
.final-cta em { color: white; font-style: italic; opacity: 0.8; }
.final-cta__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.final-cta__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 22px;
  margin-bottom: 40px;
  font-size: 0.95rem;
  font-weight: 500;
}
.final-cta__list li { color: white; }
.final-cta__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.final-cta__actions .btn--primary { background: white; color: var(--ink); }
.final-cta__actions .btn--primary:hover { background: var(--ink); color: white; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.final-cta__actions .btn--ghost { color: white; border-color: white; }
.final-cta__actions .btn--ghost:hover { background: white; color: var(--blue); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 44px;
  padding-bottom: 56px;
}
.brand--footer {
  display: inline-flex;
}
.brand--footer .brand__logo {
  height: 80px; max-width: 220px;
  background: white;
  padding: 12px 16px;
  border-radius: 10px;
}
.site-footer__brand p {
  font-size: 0.92rem;
  margin-top: 22px;
  max-width: 36ch;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.site-footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 0.93rem; color: rgba(255,255,255,0.6); transition: color .2s var(--ease); }
.site-footer__col a:hover { color: var(--blue-2); }
.site-footer__col li { font-size: 0.93rem; color: rgba(255,255,255,0.6); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.site-footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.site-footer__credit { font-style: italic; font-family: var(--font-display); }

/* ---------- Float WhatsApp ---------- */
.float-wa {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #25D366; color: white;
  border-radius: 50%;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(10, 13, 31, 0.15);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }
.float-wa::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================
   NEW SECTIONS — trust-bar, solutions, pricing, sticky-cta
   ========================================================== */

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  text-align: center;
}
.trust-bar__label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.trust-bar__brands {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 22px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.trust-bar__brands li:nth-child(odd) {
  /* The brand name items */
}
.trust-bar__brands li:nth-child(even) {
  color: var(--muted-2);
  opacity: 0.5;
}

/* ---------- CUSTOM PRINTING SOLUTIONS ---------- */
.solutions {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.solution {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.solution:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.solution__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
  line-height: 1;
}
.solution__body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.solution__body p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.solution__body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}
.solution__body ul li {
  font-size: 0.86rem;
  color: var(--ink);
  position: relative;
  padding-left: 16px;
}
.solution__body ul li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 600;
}
.solutions__cta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.solutions__cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
}

/* ---------- PRICING ---------- */
.pricing {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--paper);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.price-card {
  display: flex; flex-direction: column;
  padding: 30px 26px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: white;
  box-shadow: var(--shadow-md);
}
.price-card--feature {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.price-card--feature:hover { background: var(--ink-2); }
.price-card--feature h3, .price-card--feature p, .price-card--feature li, .price-card--feature span, .price-card--feature strong {
  color: white;
}
.price-card--feature p {
  color: rgba(255,255,255,0.7);
}
.price-card--feature ul li {
  border-bottom-color: rgba(255,255,255,0.12);
}
.price-card--feature ul li span {
  color: rgba(255,255,255,0.7);
}
.price-card__badge {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-weight: 600;
}
.price-card header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.price-card header p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.45;
}
.price-card ul {
  flex-grow: 1;
  display: flex; flex-direction: column;
  margin-bottom: 22px;
}
.price-card ul li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  gap: 8px;
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li span {
  color: var(--muted);
}
.price-card ul li strong {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.95rem;
}
.price-card--feature ul li strong { color: var(--blue-2); }
.price-card__cta {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 500;
  align-self: flex-start;
  transition: gap .3s var(--ease);
}
.price-card__cta:hover { color: var(--ink); }
.price-card--feature .price-card__cta { color: var(--blue-2); }
.price-card--feature .price-card__cta:hover { color: white; }

.pricing__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}
.pricing__note a { color: var(--blue); font-weight: 500; }
.pricing__note a:hover { text-decoration: underline; }

/* ---------- TESTIMONIALS RATING ---------- */
.testimonials__rating {
  margin-top: 56px;
  text-align: center;
  padding: 32px;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__rating-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.testimonials__rating-stars {
  color: var(--blue);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin: 8px 0 4px;
}
.testimonials__rating-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- ABOUT CTA ---------- */
.about__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--blue);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--blue);
  transition: gap .3s var(--ease);
}
.about__cta:hover { gap: 14px; }

/* ---------- FOOTER MINI CONTACTS ---------- */
.site-footer__contact-mini {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.88rem;
}
.site-footer__contact-mini li, .site-footer__contact-mini a {
  color: rgba(255,255,255,0.6);
  transition: color .2s var(--ease);
}
.site-footer__contact-mini a:hover { color: var(--blue-2); }

/* ---------- STICKY MOBILE CTA BAR ---------- */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--line);
  gap: 8px;
}
.sticky-cta-bar__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 100px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  text-align: center;
}
.sticky-cta-bar__btn:active { transform: scale(0.97); }
.sticky-cta-bar__btn--wa {
  background: #25D366; color: white; border-color: #25D366;
}
.sticky-cta-bar__btn--primary {
  background: var(--ink); color: white; border-color: var(--ink);
}
.sticky-cta-bar__btn--primary,
.sticky-cta-bar__btn--wa {
  font-weight: 600;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .solutions__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hide certain announcement items on mobile to keep the bar tight */
  .announce__hide-mobile { display: none !important; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .nav.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 1.05rem;
  }
  .nav.is-open .nav__mobile-cta a { border-bottom: none; }
  .nav.is-open a:not(.btn):last-of-type { border-bottom: none; }

  /* CRITICAL: The .nav.is-open a rule above sets dark text color which would
     break our buttons — explicitly restore correct colors for buttons */
  .nav.is-open .btn--primary { color: white; padding: 14px 18px; }
  .nav.is-open .btn--ghost { color: var(--ink); padding: 14px 18px; }
  .nav.is-open .btn--primary:hover { color: white; }

  /* CTA section inside the mobile menu */
  .nav__mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }
  .nav__mobile-cta .btn {
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 100px;
  }

  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { aspect-ratio: 1/1; max-height: 460px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__pillars { grid-template-columns: 1fr 1fr; }

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

  .testimonials__grid { grid-template-columns: 1fr; }
  .quote-section__inner { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 20px; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; }

  .process__list { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .process__list::before { display: none; }
}

/* Desktop only — hide the .nav__mobile-cta block when not in mobile menu mode */
@media (min-width: 901px) {
  .nav__mobile-cta { display: none; }
}

@media (max-width: 640px) {
  /* Container side padding tighter on phones */
  :root { --gutter: 18px; }

  .announce { font-size: 0.74rem; }
  .announce__inner {
    gap: 10px;
    padding: 8px var(--gutter);
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
  }
  .announce__hide-small { display: none; }
  .announce__pill { display: none; }
  .announce__sep { opacity: 0.3; }

  .brand__logo { height: 44px; }
  .site-header__inner { padding-top: 10px; padding-bottom: 10px; gap: 16px; }
  .nav-toggle { width: 40px; height: 40px; }

  .hero { padding-top: 40px; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero__lede { font-size: 1rem; }
  .hero__highlights { gap: 6px 14px; font-size: 0.86rem; }
  .hero__actions .btn { flex: 1; min-width: 0; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero__stat-num { font-size: 1.35rem; }
  .hero__stat-label { font-size: 0.66rem; }

  /* Hero visual — keep it contained, the badge was bleeding outside */
  .hero__visual { max-width: 100%; aspect-ratio: 5/4; }
  .hero__badge { font-size: 0.66rem; padding: 8px 12px; right: 0; max-width: 70%; }

  /* Trust bar — smaller text on mobile so it doesn't crowd */
  .trust-bar { padding: 22px 0; }
  .trust-bar__brands { font-size: 0.86rem; gap: 8px 14px; }
  .trust-bar__brands li:nth-child(even) { display: none; } /* hide separators on mobile */

  /* Services & portfolio */
  .services__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .port-item--wide { grid-column: span 2; }
  .port-item--tall { grid-row: auto; }
  .port-item figcaption h3 { font-size: 0.95rem; }
  .port-item figcaption p { font-size: 0.76rem; }
  .port-item__price { font-size: 0.84rem; }

  /* Solutions — single column, simpler internal layout for phones */
  .solutions__grid { grid-template-columns: 1fr; gap: 14px; }
  .solution {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }
  .solution__num { font-size: 2.2rem; }
  .solution__body h3 { font-size: 1.15rem; }
  .solution__body p { font-size: 0.9rem; }
  .solution__body ul { grid-template-columns: 1fr; gap: 4px; }
  .solution__body ul li { font-size: 0.82rem; }

  /* Pricing — single column on phones, never 2-col cramped */
  .pricing__grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card { padding: 24px 22px; }

  /* Industries — make pills smaller so they fit better */
  .industries__list { gap: 8px; }
  .industries__list li { padding: 10px 16px; font-size: 0.85rem; }

  .why__grid { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .process__list { grid-template-columns: 1fr; gap: 28px; }

  /* Quote form — tighter spacing */
  .quote-section__form { padding: 22px; }
  .field-row { grid-template-columns: 1fr; }

  /* Contact details — stack vertically on tiny phones */
  .contact__details li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .contact__label { font-size: 0.7rem; }
  .contact__value { font-size: 0.98rem; }

  /* Final CTA buttons stack */
  .final-cta__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .final-cta__list { gap: 6px 16px; font-size: 0.86rem; }
  .final-cta__actions { flex-direction: column; gap: 10px; }
  .final-cta__actions .btn { flex: 1 1 100%; width: 100%; }

  /* Footer */
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .brand--footer .brand__logo { height: 64px; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }

  /* Section heads — tighter */
  .section-head { margin-bottom: 32px; }
  .section-head__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .section-head__sub { font-size: 0.96rem; }

  /* SEO keyword cloud — smaller chips */
  .seo-content__keywords span { font-size: 0.76rem; padding: 5px 10px; }

  /* Quotes */
  .quote { padding: 24px 22px; }

  .float-wa { width: 50px; height: 50px; bottom: 18px; right: 18px; }
}

/* ---------- Reveal Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    animation: revealFallback 0s linear 4s forwards;
  }
  .reveal.is-in { opacity: 1; transform: none; animation: none; }
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
