/* ============================================
   PRASAD PRINTERS — Design System
   Experience Excellence
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300&family=Lato:wght@300;400;700&display=swap');

:root {
  /* Brand Colors */
  --red:     #FF2800;
  --magenta: #CC1F7A;
  --yellow:  #FFC107;
  --lime:    #A8C400;
  --sky:     #29ABE2;

  /* Base — inverted */
  --black:   #FFFFFF;
  --black-2: #F5F5F5;
  --black-3: #EBEBEB;
  --white:   #0A0A0A;
  --off-white: #1A1A1A;
  --grey:    #555555;
  --grey-light: #333333;

  /* Typography */
  --font-head: 'Barlow', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  /* inverted: black=white bg, white=dark text */
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Brand Color Bar ── */
.color-bar {
  display: flex;
  height: 5px;
  width: 100%;
}
.color-bar span {
  flex: 1;
}
.color-bar span:nth-child(1) { background: var(--red); }
.color-bar span:nth-child(2) { background: var(--magenta); }
.color-bar span:nth-child(3) { background: var(--yellow); }
.color-bar span:nth-child(4) { background: var(--lime); }
.color-bar span:nth-child(5) { background: var(--sky); }

/* ── Color Dots (small) ── */
.color-dots {
  display: flex;
  gap: 4px;
}
.color-dots span {
  display: block;
  width: 10px;
  height: 10px;
}
.color-dots span:nth-child(1) { background: var(--red); }
.color-dots span:nth-child(2) { background: var(--magenta); }
.color-dots span:nth-child(3) { background: var(--yellow); }
.color-dots span:nth-child(4) { background: var(--lime); }
.color-dots span:nth-child(5) { background: var(--sky); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section ── */
section {
  padding: var(--section-pad) 0;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(52px, 7vw, 96px); font-weight: 900; }
h2 { font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

p { font-size: 17px; line-height: 1.75; color: var(--grey-light); }

.label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  background: var(--red);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: #e02200;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,40,0,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(0,0,0,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(0,0,0,0.05);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta .btn { padding: 12px 28px; font-size: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0A0A0A;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-mobile .close-btn {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 36px;
  cursor: pointer;
  color: var(--white);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,40,0,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 80%, rgba(41,171,226,0.04) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 0;
}

/* ── HERO SPLIT ── */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-images {
  width: 420px;
  height: 520px;
  flex-shrink: 0;
  position: relative;
}

.hero-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-img.active { opacity: 1; }

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--black-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 60px;
}

.hero-img-placeholder span {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}

.hero-word {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-word.fade {
  opacity: 0;
  transform: translateY(10px);
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

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

.hero-sub {
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 52px;
  color: rgba(0,0,0,0.55);
  font-weight: 300;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1s ease both;
}

.hero-scroll span {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-item {}
.stat-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}

/* ── SERVICES ── */
.services { background: var(--black-2); }

.section-header {
  margin-bottom: 72px;
}

.section-header .label { margin-bottom: 16px; display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.05);
}

.service-card {
  background: var(--black-2);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  transition: height 0.4s ease;
}

.service-card:nth-child(1)::before { background: var(--red); }
.service-card:nth-child(2)::before { background: var(--magenta); }
.service-card:nth-child(3)::before { background: var(--lime); }
.service-card:nth-child(4)::before { background: var(--sky); }

.service-card:hover { background: var(--black-3); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }

.service-number {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  position: absolute;
  top: 32px;
  right: 40px;
  letter-spacing: -0.05em;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  position: relative;
}

.service-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.service-card p { font-size: 15px; margin-bottom: 28px; }

.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.service-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.5);
  transition: all 0.3s;
}

.service-card:hover .service-tag {
  border-color: rgba(0,0,0,0.3);
  color: rgba(0,0,0,0.8);
}

/* ── WHY US ── */
.why-us {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--black-3);
  position: relative;
  overflow: hidden;
}

.why-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(20%);
}

.why-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--red);
  z-index: -1;
}

.since-badge {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--black);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 20px 28px;
  text-align: center;
}

.since-badge .num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.since-badge .txt {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
  flex-shrink: 0;
  margin-top: 8px;
}

.why-point:nth-child(1) .why-dot { background: var(--red); }
.why-point:nth-child(2) .why-dot { background: var(--magenta); }
.why-point:nth-child(3) .why-dot { background: var(--yellow); }
.why-point:nth-child(4) .why-dot { background: var(--lime); }
.why-point:nth-child(5) .why-dot { background: var(--sky); }

.why-point h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--white);
}
.why-point p { font-size: 14px; color: rgba(0,0,0,0.45); }

/* ── PORTFOLIO ── */
.portfolio { background: var(--black-2); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.04);
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black-3);
  cursor: pointer;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
}

.portfolio-item:nth-child(1) .portfolio-placeholder { background: rgba(255,40,0,0.08); }
.portfolio-item:nth-child(2) .portfolio-placeholder { background: rgba(204,31,122,0.08); }
.portfolio-item:nth-child(3) .portfolio-placeholder { background: rgba(255,193,7,0.08); }
.portfolio-item:nth-child(4) .portfolio-placeholder { background: rgba(168,196,0,0.08); }
.portfolio-item:nth-child(5) .portfolio-placeholder { background: rgba(41,171,226,0.08); }
.portfolio-item:nth-child(6) .portfolio-placeholder { background: rgba(255,40,0,0.06); }

.portfolio-item:hover .portfolio-placeholder { filter: brightness(1.3); }

.ph-icon {
  font-size: 36px;
  opacity: 0.4;
}

.ph-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 {
  font-size: 16px;
  letter-spacing: 0.05em;
}
.portfolio-overlay p {
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--black); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.04);
}

.testimonial-card {
  background: var(--black);
  padding: 48px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,40,0,0.08);
  position: absolute;
  top: 16px;
  left: 36px;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: rgba(0,0,0,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ── CTA BAND ── */
.cta-band {
  background: #0A0A0A;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'EXPERIENCE EXCELLENCE';
  position: absolute;
  font-family: var(--font-head);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #FFFFFF;
}
.cta-band p {
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.btn-white {
  background: #FFFFFF;
  color: #0A0A0A;
}
.btn-white:hover {
  background: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--black-2);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img { height: 40px; margin-bottom: 20px; margin-top: 20px; }
.footer-brand p { font-size: 14px; color: rgba(0,0,0,0.4); max-width: 280px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(0,0,0,0.55);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-contact-item .contact-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(0,0,0,0.4);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255,40,0,0.05);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-inner { grid-template-columns: 1fr; gap: 60px; }
  .why-visual { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Layout */
  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding-top: 80px; min-height: auto; padding-bottom: 60px; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: clamp(38px, 9vw, 56px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 24px; margin-top: 48px; padding-top: 32px; }
  .stat-num { font-size: 36px; }
  .hero-scroll { display: none; }
  .hero-grid-lines { display: none; }
  .hero-split { flex-direction: column; gap: 40px; padding: 0 20px; }
  .hero-images { width: 100%; height: 280px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .service-number { font-size: 52px; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(28px, 7vw, 40px); }

  /* Why us */
  .why-visual { display: none; }
  .why-us-inner { grid-template-columns: 1fr; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item { aspect-ratio: 3/2; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band-inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-band h2 { font-size: clamp(24px, 6vw, 36px); }
  .cta-band .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-social { justify-content: center; }

  /* Page hero */
  .page-hero { padding: 120px 0 48px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 52px); }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .quote-form-wrap { padding: 32px 20px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .form-checkboxes { grid-template-columns: 1fr !important; }

  /* About page */
  .timeline-inner { grid-template-columns: 1fr !important; }
  .timeline-line { display: none !important; }
  .timeline-item.left { text-align: left !important; }
  .why-us-inner { gap: 40px !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .divisions-grid { grid-template-columns: 1fr !important; }

  /* Services page */
  .service-detail-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .service-detail-inner.reverse { direction: ltr !important; }
  .service-detail-visual { display: none !important; }
  .service-list { grid-template-columns: 1fr 1fr !important; }

  /* Portfolio page */
  .port-grid { grid-template-columns: 1fr 1fr !important; }
  .port-item.large { grid-column: span 2 !important; }
  .filter-tabs { gap: 4px; }
  .filter-tab { padding: 10px 16px; font-size: 11px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .port-grid { grid-template-columns: 1fr !important; }
  .port-item.large { grid-column: span 1 !important; }
  .nav-logo img { height: 36px; }
}
