/* ============================================
   MOVIE MOVERS — Main Stylesheet
   ============================================
   Colour Palette:
   - Deep blue:   #1E3A5F
   - Off-white:   #F0F7FF
   - Bright blue: #2563EB
   - Light blue:  #3B82F6
   - Sky accent:  #0EA5E9

   Fonts: System sans-serif stack
   ============================================ */

/* Screen-reader only — visible to Google, hidden visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- CSS Custom Properties --- */
:root {
  --charcoal: #1E3A5F;
  --charcoal-dark: #132A47;
  --charcoal-light: #4A6FA5;
  --off-white: #F0F7FF;
  --cream: #F5F9FF;
  --orange: #2563EB;
  --orange-hover: #1D4ED8;
  --peach: #93C5FD;
  --teal: #0EA5E9;
  --teal-hover: #0284C7;
  --white: #FFFFFF;
  --black: #0F172A;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-light: #F0F7FF;
  --border-light: #CBD5E1;
  --shadow-sm: 0 2px 8px rgba(30,58,95,0.06);
  --shadow-md: 0 4px 20px rgba(30,58,95,0.10);
  --shadow-lg: 0 8px 40px rgba(30,58,95,0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 50px;
  --font-stack: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--off-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background-color: var(--charcoal);
  color: var(--text-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(240, 247, 255, 0.8);
}

.section--cream {
  background-color: var(--cream);
}

.section--teal-bg {
  background-color: var(--charcoal-dark);
}

.text-center {
  text-align: center;
}

.text-orange {
  color: var(--orange);
}

.text-teal {
  color: var(--teal);
}

/* --- Section Headers --- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section--dark .section-label {
  color: var(--teal);
}

.section-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  font-size: 1.1rem;
  margin-top: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-stack);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background-color: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--secondary:hover {
  background-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn--white:hover {
  background-color: var(--off-white);
  border-color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn--teal {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--teal:hover {
  background-color: var(--teal-hover);
  border-color: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* -- Logo -- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo svg {
  height: 40px;
  width: auto;
}

/* -- Desktop Nav -- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background-color: rgba(0,0,0,0.04);
}

.nav-cta {
  margin-left: 8px;
}

/* -- Mobile Nav Toggle -- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* -- Mobile Nav Panel -- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav .btn {
  margin-top: 24px;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background-color: var(--charcoal-dark);
  overflow: hidden;
}

/* Hero background image with overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19, 42, 71, 0.72) 0%, rgba(30, 58, 95, 0.55) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
}

.hero .hero-sub {
  font-size: 1.2rem;
  color: rgba(240, 247, 255, 0.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 247, 255, 0.7);
  font-size: 0.9rem;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--teal);
}

/* -- Page Hero (About, Model) -- */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  background-color: var(--charcoal-dark);
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(240, 247, 255, 0.82);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 32px;
}

/* ============================================
   VALUE CARDS (under hero)
   ============================================ */
.value-cards {
  padding: 80px 0;
}

.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-light);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--orange);
}

.value-card h3 {
  margin-bottom: 12px;
}

/* ============================================
   PROOF / REASSURANCE STRIP
   ============================================ */
.proof-strip {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-strip h3 {
  text-align: center;
  margin-bottom: 36px;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* Edit: replace these with real client logos */
.proof-logo-placeholder {
  width: 120px;
  height: 50px;
  background-color: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--charcoal-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   TWO COLUMN SECTION
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col-text h2 {
  margin-bottom: 20px;
}

.two-col-text p {
  margin-bottom: 16px;
}

.two-col-text .btn {
  margin-top: 12px;
}

/* -- Placeholder Image Blocks -- */
.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  gap: 8px;
  overflow: hidden;
  position: relative;
}

.image-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(255,255,255,0.3);
}

.image-placeholder span {
  max-width: 200px;
  line-height: 1.4;
}

.image-placeholder--wide {
  aspect-ratio: 16 / 9;
}

.image-placeholder--tall {
  aspect-ratio: 3 / 4;
}

/* ============================================
   ICON BENEFITS (circular icons)
   ============================================ */
.icon-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.icon-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-benefit-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-benefit-circle svg {
  width: 40px;
  height: 40px;
  fill: var(--teal);
}

.section--dark .icon-benefit-circle {
  background: rgba(14, 165, 233, 0.2);
}

.icon-benefit h4 {
  margin-bottom: 8px;
}

.icon-benefit p {
  font-size: 0.9rem;
  max-width: 240px;
}

/* ============================================
   PROCESS / TIMELINE STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.process-step {
  position: relative;
  counter-increment: step;
  padding-top: 60px;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
}

.process-step h4 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.9rem;
}

.section--dark .process-step::before {
  color: var(--teal);
  opacity: 0.4;
}

.section--dark .process-step h4 {
  color: var(--white);
}

/* ============================================
   WHO WE HELP / TAGS
   ============================================ */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  padding: 10px 24px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background-color: rgba(37, 99, 235, 0.06);
}

/* ============================================
   SUSTAINABILITY SECTION
   ============================================ */
.sustainability-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sustainability-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.stat-card {
  background: rgba(14, 165, 233, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.stat-card .stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  fill: var(--teal);
}

.stat-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.8rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
}

.cta-banner h2 {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-banner p {
  color: rgba(240, 247, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-stack);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  fill: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail p {
  margin: 0;
}

.contact-detail a {
  color: var(--orange);
  font-weight: 500;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--charcoal-dark);
  color: rgba(240, 247, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
  color: rgba(240, 247, 255, 0.5);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(240, 247, 255, 0.6);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(240, 247, 255, 0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================
   ABOUT PAGE — SPECIFIC STYLES
   ============================================ */

/* -- Benefits Cards -- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--orange);
}

.benefit-card-icon--teal {
  background: rgba(14, 165, 233, 0.1);
}

.benefit-card-icon--teal svg {
  fill: var(--teal);
}

.benefit-card h4 {
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
}

/* -- Alternating Rows (About benefits) -- */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.alt-row:last-child {
  border-bottom: none;
}

.alt-row:nth-child(even) {
  direction: rtl;
}

.alt-row:nth-child(even) > * {
  direction: ltr;
}

.alt-row-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.alt-row-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--orange);
}

/* -- Product Qualities -- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.product-feature {
  padding: 32px 20px;
}

.product-feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.product-feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--teal);
}

.product-feature h4 {
  margin-bottom: 8px;
}

.product-feature p {
  font-size: 0.85rem;
}

/* -- Comparison Table -- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead {
  background-color: var(--charcoal);
}

.comparison-table th {
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
}

.comparison-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table tbody tr {
  background-color: var(--white);
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--cream);
}

.comparison-table .check {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: #D4604A;
  font-weight: 700;
  font-size: 1.1rem;
}

/* -- Process Gallery -- */
.process-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.process-gallery-item .image-placeholder {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
}

.process-gallery-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* -- Accreditation -- */
.accreditation-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.accreditation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.accreditation-item svg {
  width: 36px;
  height: 36px;
  fill: var(--teal);
}

/* ============================================
   MODEL PAGE — SPECIFIC STYLES
   ============================================ */

/* -- Pillar Cards -- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.pillar {
  padding: 20px;
}

.pillar-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  border: 2px solid rgba(14, 165, 233, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pillar-circle svg {
  width: 44px;
  height: 44px;
  fill: var(--teal);
}

.pillar h3 {
  margin-bottom: 12px;
}

/* -- Timeline Steps (Model page vertical) -- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-step {
  position: relative;
  padding-bottom: 60px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.timeline-step h3 {
  margin-bottom: 12px;
}

.timeline-step p {
  font-size: 0.95rem;
}

.timeline-step ul {
  margin-top: 12px;
}

.timeline-step ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.timeline-step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .value-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 64px 0;
  }

  /* Header */
  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
    padding-top: calc(var(--header-height) + 32px);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-badges {
    gap: 20px;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
  }

  /* Grids */
  .two-col,
  .two-col--reverse,
  .sustainability-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .value-cards-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .icon-benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* About page */
  .alt-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alt-row:nth-child(even) {
    direction: ltr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .process-gallery {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 14px;
  }

  /* Model page */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero {
    padding-bottom: 60px;
  }

  .sustainability-stats {
    grid-template-columns: 1fr;
  }

  .accreditation-bar {
    flex-direction: column;
    gap: 24px;
  }
}

/* -- Nav Toggle Active State -- */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -- Scroll offset helper -- */
.anchor-offset {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* ============================================
   BUSINESS WASTE PAGE
   ============================================ */
.bw-page-body {
  padding-top: var(--header-height);
  background-color: var(--off-white);
}

.bw-layout {
  display: grid;
  grid-template-columns: 260px 1fr 340px;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 60px;
  align-items: start;
}

/* Left — stacked images */
.bw-images {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
  padding-top: 8px;
}

.bw-img-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
}

.bw-img-block svg {
  width: 40px;
  height: 40px;
  fill: rgba(255,255,255,0.3);
  display: block;
  margin: 0 auto 8px;
}

/* Centre — main content */
.bw-content {
  padding: 0 40px;
  border-right: 1px solid var(--border-light);
}

.bw-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 6px;
}

.bw-content .bw-phone-top {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.bw-content .bw-phone-top a {
  color: var(--orange);
  font-weight: 600;
}

.bw-content .bw-intro {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.bw-trust-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.bw-feature {
  margin-bottom: 20px;
}

.bw-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.bw-feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.bw-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 24px 0;
}

.bw-checklist {
  margin: 16px 0;
}

.bw-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.bw-checklist li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.bw-cta-line {
  margin-top: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.bw-cta-line a {
  color: var(--orange);
}

/* Right — orange sidebar */
.bw-sidebar {
  background-color: var(--orange);
  color: var(--white);
  padding: 28px 24px 32px;
  border-radius: var(--radius-md);
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.bw-sidebar-helper {
  background-color: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bw-sidebar-helper-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bw-sidebar-helper-avatar svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.bw-sidebar-helper p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.5;
}

.bw-sidebar-helper strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-top: 4px;
}

.bw-sidebar-helper span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

.bw-sidebar-phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.bw-sidebar-phone:hover {
  text-decoration: underline;
}

.bw-sidebar-perks {
  margin-bottom: 20px;
}

.bw-sidebar-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  padding: 3px 0;
}

.bw-sidebar-perks li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
}

.bw-sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.bw-sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bw-sidebar-form input,
.bw-sidebar-form select,
.bw-sidebar-form textarea {
  width: 100%;
  font-family: var(--font-stack);
  font-size: 0.88rem;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.15);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
}

.bw-sidebar-form input::placeholder,
.bw-sidebar-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.bw-sidebar-form select option {
  color: var(--text-primary);
  background: var(--white);
}

.bw-sidebar-form input:focus,
.bw-sidebar-form select:focus,
.bw-sidebar-form textarea:focus {
  border-color: rgba(255,255,255,0.9);
  background-color: rgba(255,255,255,0.22);
}

.bw-sidebar-form .btn--white {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

/* Bin sizes section */
.bw-bin-sizes {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.bw-bin-sizes h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 36px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.bw-bins-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bw-bin-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bw-bin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bw-bin-icon {
  width: 80px;
  height: 100px;
  margin: 0 auto 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bw-bin-icon svg {
  width: 100%;
  height: 100%;
}

.bw-bin-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.bw-bin-card p {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  margin-bottom: 14px;
}

.bw-bin-card .btn {
  font-size: 0.78rem;
  padding: 8px 16px;
  width: 100%;
  justify-content: center;
}

/* Responsive — business waste */
@media (max-width: 1100px) {
  .bw-layout {
    grid-template-columns: 200px 1fr 300px;
  }
  .bw-bins-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .bw-layout {
    grid-template-columns: 1fr 300px;
  }
  .bw-images {
    display: none;
  }
  .bw-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .bw-layout {
    grid-template-columns: 1fr;
  }
  .bw-content {
    padding: 0;
    border-right: none;
    margin-bottom: 32px;
  }
  .bw-sidebar {
    position: static;
  }
  .bw-bins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .bw-bins-grid {
    grid-template-columns: 1fr;
  }
}

/* -- Subtle Animations -- */
@media (prefers-reduced-motion: no-preference) {
  .value-card,
  .benefit-card,
  .icon-benefit,
  .process-step,
  .pillar,
  .timeline-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .value-card.visible,
  .benefit-card.visible,
  .icon-benefit.visible,
  .process-step.visible,
  .pillar.visible,
  .timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
