/* Web Orbit Company Profile - A5 Print Stylesheet */
/* Page: 148 × 210 mm | Margins: 14 mm | Bleed: 3 mm | 300 DPI equivalent */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #FF6A00;
  --orange-light: #FF7A1A;
  --black: #0B0B0B;
  --black-soft: #121212;
  --white: #FFFFFF;
  --gray-dark: #2A2A2A;
  --gray-mid: #4A4A4A;
  --gray-light: #E8E8E8;
  --page-w: 148mm;
  --page-h: 210mm;
  --margin: 14mm;
  --bleed: 3mm;
}

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

html {
  font-size: 10pt;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: #888;
  line-height: 1.55;
}

/* ── Page Shell ── */
.page {
  width: var(--page-w);
  height: var(--page-h);
  position: relative;
  overflow: hidden;
  page-break-after: always;
  break-after: page;
  background: var(--white);
}

.page:last-child {
  page-break-after: auto;
  break-after: auto;
}

.page-inner {
  position: absolute;
  inset: var(--margin);
  display: flex;
  flex-direction: column;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4mm;
}

.section-title {
  font-size: 18pt;
  color: var(--black);
  margin-bottom: 5mm;
}

.section-title.light {
  color: var(--white);
}

.section-title .accent {
  color: var(--orange);
}

.body-text {
  font-size: 8.5pt;
  color: var(--gray-mid);
  font-weight: 400;
}

.body-text.light {
  color: rgba(255, 255, 255, 0.75);
}

.lead {
  font-size: 9.5pt;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.6;
}

.divider {
  width: 20mm;
  height: 0.6mm;
  min-height: 0.6mm;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  margin: 4mm 0 5mm;
  border-radius: 0.3mm;
  display: block;
}

.divider.light {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 75%, rgba(255, 122, 26, 0.35) 100%);
}

/* ── Header / Footer ── */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8mm;
  padding-bottom: 3mm;
  border-bottom: 0.5px solid var(--gray-light);
}

.page-header.dark {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 2mm;
}

.logo-img {
  height: 7mm;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img.cover {
  height: 18mm;
  width: auto;
  max-width: 95mm;
  margin-bottom: 6mm;
  align-self: flex-start;
  object-fit: contain;
  object-position: left center;
}

.logo-img.back {
  width: 72mm;
  height: auto;
  margin-bottom: 5mm;
  object-fit: contain;
}

.page-num {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 500;
  color: var(--gray-mid);
}

.page-num.light {
  color: rgba(255, 255, 255, 0.4);
}

.page-footer {
  margin-top: auto;
  padding-top: 4mm;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2mm;
  font-size: 5.8pt;
  color: var(--gray-mid);
  border-top: 0.5px solid var(--gray-light);
}

.footer-website {
  text-align: left;
}

.footer-email {
  text-align: center;
}

.footer-phone {
  text-align: right;
  white-space: nowrap;
}

.page-footer.dark {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
}

/* ── Dark Page Variant ── */
.page.dark,
.page.dark-soft {
  background: var(--black-soft);
  color: var(--white);
}

/* ── Geometric Pattern Overlay ── */
.geo-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
}

.geo-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--orange) 0.5px, transparent 0.5px);
  background-size: 4mm 4mm;
  opacity: 0.15;
  pointer-events: none;
}

/* ── Cover Page ── */
/* .cover {
  background: linear-gradient(145deg, var(--black) 0%, #1a0a00 40%, var(--black-soft) 100%);
} */

.cover-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cover-content {
  position: absolute;
  inset: var(--margin);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
  text-align: left;
}

.cover-badge {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 2mm;
  background: rgba(255, 106, 0, 0.12);
  border: 0.5px solid rgba(255, 106, 0, 0.35);
  border-radius: 20px;
  padding: 2mm 4mm;
  font-size: 7pt;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  width: fit-content;
  margin: 0;
}

.cover-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32pt;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4mm;
  display: none; /* replaced by brand logo */
}

.cover-title .orbit {
  color: var(--orange);
}

.cover-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 10pt;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
  margin-bottom: 10mm;
  max-width: 90mm;
  text-align: left;
}

.cover-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 5mm;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.cover-meta-item {
  font-size: 6.5pt;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-year {
  font-family: 'Poppins', sans-serif;
  font-size: 9pt;
  font-weight: 600;
  color: var(--orange);
}

/* ── Grid Layouts ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5mm;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4mm;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4mm;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 0.5px solid var(--gray-light);
  border-radius: 3mm;
  padding: 4mm;
}

.card.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-icon {
  width: 8mm;
  height: 8mm;
  margin-bottom: 3mm;
  color: var(--orange);
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 8.5pt;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2mm;
}

.card-title.light {
  color: var(--white);
}

.card-desc {
  font-size: 7pt;
  color: var(--gray-mid);
  line-height: 1.5;
}

.card-desc.light {
  color: rgba(255, 255, 255, 0.55);
}

/* ── About Page ── */
.about-page .page-header {
  margin-bottom: 6mm;
  padding-bottom: 2.5mm;
}

.about-page .section-label {
  margin-bottom: 3mm;
}

.about-page .section-title {
  margin-bottom: 4mm;
}

.about-page .lead {
  margin-bottom: 3.5mm;
}

.about-page .body-text {
  margin-bottom: 3mm;
}

.about-page .body-text:last-of-type {
  margin-bottom: 4mm;
}

.about-page .stats-row {
  margin: 4mm 0;
  gap: 5mm;
}

.about-page .stat {
  padding: 3.5mm;
}

.about-page .about-cards {
  margin-top: 3mm;
  margin-bottom: 5mm;
}

.about-page .page-footer {
  padding-top: 4mm;
}

/* ── Stats Row ── */
.stats-row {
  display: flex;
  gap: 6mm;
  margin: 6mm 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 4mm;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.06), rgba(255, 122, 26, 0.02));
  border-radius: 3mm;
  border: 0.5px solid rgba(255, 106, 0, 0.15);
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 16pt;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 6.5pt;
  color: var(--gray-mid);
  margin-top: 2mm;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Mission / Vision Blocks ── */
.mv-block {
  padding: 4.5mm 5mm;
  border-left: 2px solid var(--orange);
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent);
  margin-bottom: 4mm;
  border-radius: 0 3mm 3mm 0;
}

.mv-block-alt {
  border-left-color: var(--orange-light);
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.06), transparent);
}

.mv-block-alt h3 {
  color: var(--orange-light);
}

.mv-block h3 {
  font-size: 9.5pt;
  color: var(--orange);
  margin-bottom: 2mm;
}

.mv-block p {
  font-size: 8pt;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.mission-lead {
  font-size: 9pt;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 5mm;
}

.mission-quote {
  margin: 5mm 0;
  padding: 4.5mm 5mm;
  border-left: 2px solid var(--orange);
  background: rgba(255, 106, 0, 0.06);
  border-radius: 0 3mm 3mm 0;
}

.mission-quote p {
  font-family: 'Poppins', sans-serif;
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 2mm;
}

.mission-quote span {
  font-size: 7pt;
  color: var(--orange);
  letter-spacing: 0.06em;
}

/* ── Agency Page (Why Choose Us Over Generic Agencies) ── */
.agency-page .page-header {
  margin-bottom: 5mm;
  padding-bottom: 2mm;
}

.agency-page .section-label {
  margin-bottom: 2.5mm;
}

.agency-page .section-title {
  margin-bottom: 3.5mm;
  font-size: 16pt;
}

.agency-lead {
  font-size: 8.5pt;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 4mm;
}

.agency-grid {
  gap: 3mm;
}

.agency-grid .card {
  padding: 3.5mm;
}

.agency-grid .card-icon {
  width: 6.5mm;
  height: 6.5mm;
  margin-bottom: 2mm;
}

.agency-grid .card-title {
  font-size: 7.5pt;
  margin-bottom: 1.5mm;
}

.agency-grid .card-desc {
  font-size: 6.5pt;
  line-height: 1.45;
}

/* ── Services Page ── */
.services-lead {
  font-size: 8.5pt;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 5mm;
}

.services-grid {
  gap: 4mm;
}

.service-card {
  padding: 4.5mm;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3mm;
}

.service-card .card-icon.tabler-icon {
  width: 8mm;
  height: 8mm;
  color: var(--orange);
}

.service-card .card-icon.tabler-icon-filled {
  fill: var(--orange);
  stroke: none;
}

.service-num {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

.service-card .card-title {
  font-size: 9pt;
  margin-bottom: 2mm;
}

.service-card .card-desc {
  font-size: 7pt;
  line-height: 1.5;
}

/* ── Process Page ── */
.process-page .page-header {
  margin-bottom: 4mm;
  padding-bottom: 1.5mm;
}

.process-page .section-label {
  margin-bottom: 2mm;
}

.process-page .section-title {
  margin-bottom: 2.5mm;
  font-size: 16pt;
}

.process-page .divider.light {
  margin: 2.5mm 0 3mm;
}

.process-lead {
  font-size: 8pt;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 3mm;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5mm;
  padding-left: 1mm;
  margin-bottom: 4mm;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 7mm;
  top: 5mm;
  bottom: 5mm;
  width: 0.6mm;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 106, 0, 0.25) 100%);
  border-radius: 0.3mm;
}

.process-timeline-step {
  display: flex;
  gap: 3mm;
  align-items: stretch;
}

.process-marker {
  flex-shrink: 0;
  width: 12.5mm;
  display: flex;
  justify-content: center;
  padding-top: 1mm;
  z-index: 1;
}

.process-marker-num {
  width: 7.5mm;
  height: 7.5mm;
  border-radius: 30%;
  background: linear-gradient(145deg, #FF6A00 0%, #FF8A2A 45%, #FFB04A 100%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 6pt;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.8mm 1.6mm rgba(255, 106, 0, 0.28), 0 0 0 1.2mm var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 0.2mm 0.4mm rgba(11, 11, 11, 0.15);
}

.process-step-card {
  flex: 1;
  background: var(--white);
  border: 0.5px solid rgba(255, 106, 0, 0.12);
  border-radius: 2mm;
  padding: 2mm 2.5mm;
  box-shadow: 0 0.5mm 2mm rgba(11, 11, 11, 0.04);
}

.process-step-head {
  display: flex;
  align-items: center;
  gap: 2mm;
  margin-bottom: 0.5mm;
}

.process-icon-wrap {
  width: 7mm;
  height: 7mm;
  border-radius: 2mm;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.14) 0%, rgba(255, 138, 42, 0.06) 100%);
  border: 0.5px solid rgba(255, 106, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.process-icon-wrap svg {
  width: 4.2mm;
  height: 4.2mm;
}

.process-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 7.5pt;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.process-step-desc {
  font-size: 6.5pt;
  color: var(--gray-mid);
  line-height: 1.35;
  padding-left: 9.5mm;
}

.process-page .page-footer {
  margin-top: auto;
  padding-top: 3mm;
}

/* ── Portfolio ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4mm;
}

.portfolio-item {
  border-radius: 3mm;
  overflow: hidden;
  border: 0.5px solid var(--gray-light);
}

.portfolio-thumb {
  height: 28mm;
  position: relative;
  overflow: hidden;
  background: #0B0B0B;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.portfolio-thumb.logo-thumb {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3mm;
}

.portfolio-thumb.logo-thumb.dark-bg {
  background: #0B0B0B;
}

.portfolio-thumb.logo-thumb img {
  object-fit: contain;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}

.portfolio-info {
  padding: 3mm;
  background: var(--white);
}

.portfolio-info h4 {
  font-size: 7.5pt;
  color: var(--black);
  margin-bottom: 1mm;
}

.portfolio-info p {
  font-size: 6.5pt;
  color: var(--gray-mid);
}

.portfolio-tag {
  display: inline-block;
  font-size: 5.5pt;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
  padding: 1mm 2mm;
  border-radius: 2mm;
  margin-bottom: 2mm;
}

/* ── Logos Page ── */
.logos-page .page-header {
  margin-bottom: 4mm;
  padding-bottom: 1.5mm;
}

.logos-page .section-label {
  margin-bottom: 2mm;
}

.logos-page .section-title {
  margin-bottom: 2.5mm;
  font-size: 16pt;
}

.logos-page .divider.light {
  margin: 2.5mm 0 3mm;
}

.logos-lead {
  font-size: 8pt;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4mm;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3mm;
  align-content: start;
  margin-bottom: 5mm;
}

.logo-card {
  min-height: 0;
}

.logo-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 0.5px solid rgba(255, 106, 0, 0.12);
  border-radius: 3mm;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0.8mm 2mm rgba(11, 11, 11, 0.05);
}

.logo-card-thumb {
  height: 32mm;
  flex-shrink: 0;
  background: #ffffff;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5mm;
  position: relative;
}

.logo-card-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.6mm;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0.85;
}

.logo-card-thumb.dark-bg {
  background: #000000;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.logo-card-thumb.dark-bg::after {
  opacity: 1;
}

.logo-card-thumb.logo-lg {
  padding: 2.5mm;
}

.logo-card-thumb.logo-lg > img {
  max-width: 100%;
  max-height: 100%;
}

.logo-card-thumb.dark-bg.logo-lg > img {
  max-width: 100%;
  max-height: 100%;
  transform: scale(1.08);
}

.logo-card-thumb img {
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-card-meta {
  padding: 3mm 3mm 3.5mm;
  text-align: center;
  min-height: 14mm;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1mm;
}

.logo-card-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
}

.logo-card-tag {
  display: inline-block;
  font-size: 5.5pt;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
}

.logos-page .page-footer {
  margin-top: auto;
}

/* ── Creatives Page ── */
.creatives-page .page-header {
  margin-bottom: 4mm;
  padding-bottom: 1.5mm;
}

.creatives-page .section-label {
  margin-bottom: 2mm;
}

.creatives-page .section-title {
  margin-bottom: 2.5mm;
  font-size: 16pt;
}

.creatives-page .divider.light {
  margin: 2.5mm 0 3mm;
}

.creatives-lead {
  font-size: 8pt;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 3mm;
}

.creatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3mm;
  align-items: start;
  align-content: start;
}

.creative-post {
  border-radius: 2mm;
  overflow: hidden;
  border: 0.5px solid var(--gray-light);
  background: #ffffff;
  line-height: 0;
  width: 100%;
}

.creative-post img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* ── Tech Stack Page ── */
.tech-page .page-header {
  margin-bottom: 4mm;
  padding-bottom: 1.5mm;
}

.tech-page .section-label {
  margin-bottom: 2mm;
}

.tech-page .section-title {
  margin-bottom: 2.5mm;
  font-size: 16pt;
}

.tech-page .divider.light {
  margin: 2.5mm 0 3mm;
}

.tech-lead {
  font-size: 7.5pt;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 3.5mm;
}

.tech-group {
  margin-bottom: 3mm;
}

.tech-group-title {
  font-family: 'Poppins', sans-serif;
  font-size: 6.5pt;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2mm;
  padding-left: 1mm;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2mm;
}

.tech-item {
  background: linear-gradient(135deg, #FFF9F5 0%, var(--white) 100%);
  border: 0.5px solid rgba(255, 106, 0, 0.12);
  border-radius: 2mm;
  padding: 2mm 1.5mm 2.5mm;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5mm;
  text-align: center;
  min-height: 14mm;
  box-shadow: 0 0.5mm 1.5mm rgba(11, 11, 11, 0.04);
}

.tech-item img {
  width: 6mm;
  height: 6mm;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.tech-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 5.5pt;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

.tech-footnote {
  margin-top: auto;
  padding: 2.5mm 3.5mm;
  background: linear-gradient(135deg, #FFF9F5 0%, var(--white) 100%);
  border: 0.5px solid rgba(255, 106, 0, 0.2);
  border-radius: 2mm;
  display: flex;
  align-items: center;
  gap: 2.5mm;
}

.tech-footnote-num {
  font-family: 'Poppins', sans-serif;
  font-size: 10pt;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.tech-footnote-text {
  font-size: 6.5pt;
  color: var(--gray-dark);
  line-height: 1.4;
}

/* ── Industries Page ── */
.industries-page .page-header {
  margin-bottom: 5mm;
  padding-bottom: 2mm;
}

.industries-page .section-label {
  margin-bottom: 2.5mm;
}

.industries-page .section-title {
  margin-bottom: 3mm;
}

.industries-page .divider.light {
  margin: 3mm 0 3mm;
}

.industries-lead {
  font-size: 8pt;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 4mm;
}

.industries-grid {
  gap: 3.5mm;
}

.industry-card {
  padding: 3.5mm;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.7mm;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0.85;
}

.industry-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5mm;
}

.industry-icon-wrap {
  width: 7mm;
  height: 7mm;
  border-radius: 2mm;
  background: rgba(255, 106, 0, 0.12);
  border: 0.5px solid rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.industry-icon-wrap svg {
  width: 4.5mm;
  height: 4.5mm;
}

.industry-num {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 700;
  color: rgba(255, 106, 0, 0.45);
}

.industry-card .card-title {
  font-size: 8pt;
  margin-bottom: 1.5mm;
  line-height: 1.2;
}

.industry-card .card-desc {
  font-size: 6.5pt;
  line-height: 1.45;
  flex: 1;
}

.industry-tag {
  display: inline-block;
  margin-top: 2mm;
  font-size: 5.5pt;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 106, 0, 0.85);
  padding: 1mm 1.8mm;
  background: rgba(255, 106, 0, 0.08);
  border: 0.5px solid rgba(255, 106, 0, 0.18);
  border-radius: 1.2mm;
  align-self: flex-start;
}

.industries-callout {
  margin-top: 3.5mm;
  padding: 3mm 4mm;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 106, 0, 0.18);
  border-left: 1.2mm solid var(--orange);
  border-radius: 2mm;
}

.industries-page .page-footer {
  margin-top: auto;
  padding-top: 3mm;
  width: 100%;
}

.industries-callout-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 6pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1mm;
}

.industries-callout-text {
  font-size: 6.5pt;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

/* ── Growth Page (Built for Growth & Results) ── */
.growth-page .page-header {
  margin-bottom: 5mm;
  padding-bottom: 2mm;
}

.growth-page .section-label {
  margin-bottom: 2.5mm;
}

.growth-page .section-title {
  margin-bottom: 3.5mm;
  font-size: 16pt;
}

.growth-grid {
  gap: 3mm;
  margin-bottom: 4mm;
}

.benefit-card {
  background: linear-gradient(135deg, #FFF9F5 0%, var(--white) 100%);
  border: 0.5px solid rgba(255, 106, 0, 0.15);
  border-radius: 2.5mm;
  padding: 3.5mm;
  position: relative;
  overflow: hidden;
}

/* .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.8mm;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
} */

.benefit-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5mm;
}

.benefit-icon-wrap {
  width: 7mm;
  height: 7mm;
  border-radius: 2mm;
  background: rgba(255, 106, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.benefit-icon-wrap svg {
  width: 4.5mm;
  height: 4.5mm;
}

.benefit-num {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 700;
  color: rgba(255, 106, 0, 0.35);
  letter-spacing: 0.04em;
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-size: 7.5pt;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5mm;
  line-height: 1.25;
}

.benefit-desc {
  font-size: 6.5pt;
  color: var(--gray-mid);
  line-height: 1.45;
}

.growth-callout {
  margin-top: auto;
  padding: 3.5mm 4mm;
  background: linear-gradient(135deg, #242424 0%, #0B0B0B 100%);
  border: 0.5px solid rgba(255, 106, 0, 0.22);
  border-radius: 2.5mm;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 4mm;
  position: relative;
  overflow: hidden;
}

.growth-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.8mm;
  /* background: linear-gradient(90deg, var(--orange), var(--orange-light)); */
}

.growth-callout-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 17mm;
  padding-right: 4mm;
  border-right: 0.5px solid rgba(255, 106, 0, 0.2);
}

.growth-callout-num {
  font-family: 'Poppins', sans-serif;
  font-size: 14pt;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}

.growth-callout-label {
  font-family: 'Poppins', sans-serif;
  font-size: 5.5pt;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1.2mm;
}

.growth-callout-body {
  min-width: 0;
}

.growth-callout-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 8.5pt;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1mm;
  line-height: 1.2;
}

.growth-callout-text {
  font-size: 6.5pt;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.growth-callout-icon {
  width: 9mm;
  height: 9mm;
  border-radius: 2.5mm;
  background: rgba(255, 106, 0, 0.12);
  border: 0.5px solid rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.growth-callout-icon svg {
  width: 5mm;
  height: 5mm;
}

/* ── Why Choose ── */
.why-item {
  display: flex;
  gap: 3mm;
  align-items: flex-start;
  margin-bottom: 4mm;
}

.why-check {
  flex-shrink: 0;
  width: 5mm;
  height: 5mm;
  color: var(--orange);
  margin-top: 0.5mm;
}

.why-item h4 {
  font-size: 8pt;
  color: var(--black);
  margin-bottom: 1mm;
}

.why-item p {
  font-size: 7pt;
  color: var(--gray-mid);
  line-height: 1.45;
}

/* ── Contact Page ── */
.contact-page .page-header {
  margin-bottom: 4mm;
  padding-bottom: 1.5mm;
}

.contact-page .section-label {
  margin-bottom: 2mm;
}

.contact-page .section-title {
  margin-bottom: 2.5mm;
  font-size: 15pt;
}

.contact-page .divider.light {
  margin: 2.5mm 0 3mm;
}

.contact-lead {
  font-size: 8pt;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 4mm;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3mm;
  margin-bottom: 3.5mm;
}

.contact-method {
  background: linear-gradient(135deg, #FFF9F5 0%, var(--white) 100%);
  border: 0.5px solid rgba(255, 106, 0, 0.12);
  border-radius: 2.5mm;
  padding: 3.5mm 3mm;
  text-align: center;
  box-shadow: 0 0.5mm 1.5mm rgba(11, 11, 11, 0.04);
}

.contact-method-icon {
  width: 8mm;
  height: 8mm;
  margin: 0 auto 2mm;
  border-radius: 2mm;
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  width: 4.5mm;
  height: 4.5mm;
}

.contact-method-title {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1mm;
}

.contact-method-value {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1mm;
  line-height: 1.2;
}

.contact-method-note {
  font-size: 6pt;
  color: var(--gray-mid);
  line-height: 1.4;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5mm;
  margin-bottom: 3.5mm;
}

.contact-meta-item {
  background: var(--white);
  border: 0.5px solid var(--gray-light);
  border-radius: 2mm;
  padding: 2.5mm 3mm;
  display: flex;
  flex-direction: column;
  gap: 0.5mm;
}

.contact-meta-label {
  font-size: 5.5pt;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.contact-meta-value {
  font-size: 6.5pt;
  color: var(--gray-dark);
  line-height: 1.4;
}

.contact-steps-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 6.5pt;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 2mm;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 2mm;
  margin-bottom: 3.5mm;
}

.contact-step {
  display: flex;
  gap: 2.5mm;
  align-items: flex-start;
  padding: 2.5mm 3mm;
  background: var(--white);
  border: 0.5px solid var(--gray-light);
  border-left: 1mm solid var(--orange);
  border-radius: 2mm;
}

.contact-step-num {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  padding-top: 0.5mm;
}

.contact-step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5mm;
  line-height: 1.2;
}

.contact-step p {
  font-size: 6pt;
  color: var(--gray-mid);
  line-height: 1.4;
}

.contact-cta {
  margin-top: auto;
  padding: 3.5mm 4mm;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 2.5mm;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3mm;
}

.contact-cta-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 9pt;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1mm;
  line-height: 1.2;
}

.contact-cta-text p {
  font-size: 6pt;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.contact-cta-action {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 8pt;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 2mm;
  padding: 2mm 3mm;
  white-space: nowrap;
}

/* ── Back Cover ── */
.back-cover {
  background: #0B0B0B;
}

.back-content {
  position: absolute;
  inset: var(--margin);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.back-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 100mm;
}

.back-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 10pt;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  margin-bottom: 4mm;
  max-width: 95mm;
  line-height: 1.45;
}

.back-divider {
  width: 20mm;
  height: 0.6mm;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 0.3mm;
  margin-bottom: 6mm;
}

.back-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5mm;
  margin-bottom: 3mm;
}

.back-services span {
  font-size: 6pt;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.back-services .back-dot {
  color: var(--orange);
  opacity: 0.7;
}

.back-location {
  font-size: 6.5pt;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.back-copy {
  margin-top: 5mm;
  font-size: 5.5pt;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── TOC ── */
.contents-page .page-header {
  margin-bottom: 6mm;
  padding-bottom: 2.5mm;
}

.contents-page .section-label {
  margin-bottom: 3mm;
}

.contents-page .section-title {
  margin-bottom: 3mm;
}

.contents-page .divider.light {
  margin: 3mm 0 2mm;
}

.toc-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.toc-header {
  display: grid;
  grid-template-columns: 8mm 1fr auto;
  align-items: baseline;
  gap: 3mm;
  padding-bottom: 1mm;
  flex-shrink: 0;
}

.toc-page-label {
  font-family: 'Poppins', sans-serif;
  font-size: 6.5pt;
  font-weight: 600;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
  min-width: 8mm;
}

.toc-list {
  list-style: none;
  margin-top: 0;
  flex: 0 0 auto;
}

.toc-item {
  display: grid;
  grid-template-columns: 8mm 1fr auto;
  align-items: baseline;
  gap: 3mm;
  padding: 2.2mm 0;
  border-bottom: 0.5px dotted var(--gray-light);
}

.toc-item:last-child {
  border-bottom: none;
}

.toc-num {
  font-family: 'Poppins', sans-serif;
  font-size: 7pt;
  font-weight: 600;
  color: var(--gray-mid);
}

.toc-title {
  font-size: 8pt;
  color: var(--gray-dark);
  position: relative;
  overflow: hidden;
}

.toc-title::after {
  content: '';
  position: absolute;
  bottom: 1.5mm;
  left: 0;
  right: 0;
  border-bottom: 0.5px dotted var(--gray-light);
  margin-left: 2mm;
  z-index: -1;
}

.toc-page {
  font-family: 'Poppins', sans-serif;
  font-size: 8pt;
  font-weight: 600;
  color: var(--orange);
  min-width: 8mm;
  text-align: right;
}

/* ── Print Rules ── */
@page {
  size: 148mm 210mm;
  margin: 0;
}

@media print {
  :root {
    --preview-scale: 1;
  }

  body {
    background: none;
  }

  .page {
    margin: 0;
    margin-bottom: 0;
    box-shadow: none;
    transform: none;
  }
}

@media screen {
  :root {
    --preview-scale: 1;
  }

  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(10mm * var(--preview-scale));
    padding: 12px 0 24px;
    overflow-x: hidden;
    width: 100%;
  }

  .page {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    transform: scale(var(--preview-scale));
    transform-origin: top center;
    /* Transform doesn't shrink layout box — pull next page up so pages don't leave huge gaps */
    margin-bottom: calc(210mm * (var(--preview-scale) - 1));
  }
}
