/* ============================================
   RESHELTER — Global Styles
   ============================================ */

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

:root {
  --black:       #111111;
  --dark:        #1a1a1a;
  --card-dark:   #222222;
  --white:       #ffffff;
  --off-white:   #f5f5f0;
  --light:       #ebebea;
  --green:       #1b8a4a;      /* muted forest green — matches the logo */
  --green-hero:  #3dbb6e;      /* lighter green for use on dark backgrounds */
  --green-dark:  #1d6b3a;      /* logo's own dark green */
  --grey-dark:   #333333;
  --grey-mid:    #666666;
  --grey-light:  #999999;
  --border-dk:   rgba(255, 255, 255, 0.09);
  --border-lt:   rgba(0, 0, 0, 0.10);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3.5rem, 9vw, 8rem);     font-weight: 900; }
h2 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem);     font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; text-transform: none; letter-spacing: 0; }
h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; font-family: 'Space Grotesk', sans-serif; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}

.text-green  { color: var(--green); }
.text-white  { color: var(--white); }
.text-black  { color: var(--black); }
.text-muted  { color: var(--grey-light); }
.text-center { text-align: center; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 96px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

/* ── Section colour variants ────────────────── */

/* White — default, most sections */
.section-white   { background: var(--white); }

/* Subtle off-white for visual rhythm */
.section-off     { background: var(--off-white); }

/* Dark — hero, the shop mock-up panel, footer */
.section-dark    { background: var(--dark); color: var(--white); }
.section-dark p  { color: #aaaaaa; }
.section-dark h2,
.section-dark h3 { color: var(--white); }

/* Light grey — used for inline boxes, cards */
.section-light   { background: var(--off-white); }

/* Spacing utilities */
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: icon + wordmark */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  width: 36px;
  display: block;
  object-fit: contain;
}
.nav-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--black); }

/* Icon links (Instagram, LinkedIn, Cart) */
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  padding: 2px;
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--black); }

/* Thin vertical divider between text links and icons */
.nav-divider {
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.page-content { padding-top: 64px; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 13px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

/* Green filled — white text (green is dark enough now) */
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* Outlined — on light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.28);
}
.btn-outline-dark:hover { border-color: var(--black); }

/* Outlined — on dark backgrounds */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}
.btn-outline:hover { border-color: var(--white); }

/* Dark filled — on light backgrounds */
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: #333; border-color: #333; }

/* White filled — for use on dark/green backgrounds */
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); border-color: var(--off-white); }

/* ============================================
   SECTION LABEL (eyebrow text)
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  font-family: 'Space Grotesk', sans-serif;
}

/* On dark section backgrounds use lighter green */
.section-dark .section-label { color: var(--green-hero); }

/* ============================================
   HERO  (always dark — keeps the impact)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d0d0d;
  overflow: hidden;
}

/*
  HERO PHOTO — save your image as hero.jpg inside the reshelter folder.
  The .hero-overlay layer darkens it automatically.
*/
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('screenshots/hero.jpg');
  background-size: cover;
  background-position: center;
  /* Fallback colour while image loads: */
  background-color: #0d0d0d;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 28px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-hero);
  margin-bottom: 18px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-title    { color: var(--white); margin-bottom: 8px; font-size: clamp(4rem, 11vw, 9rem); }
.hero-subtitle { color: var(--green-hero); margin-bottom: 28px; font-size: clamp(1.4rem, 3.5vw, 2.4rem); line-height: 1.15; }

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  z-index: 2;
}

.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */

.page-header {
  background: var(--black);
  border-bottom: none;
  padding: 80px 28px 64px;
  text-align: center;
}

.page-header h1         { color: var(--white); margin-bottom: 14px; font-size: clamp(3rem, 9vw, 6.5rem); }
.page-header p          { color: #777; max-width: 480px; margin: 0 auto; font-size: 1rem; }
.page-header::after     { content: ''; display: block; width: 48px; height: 3px; background: var(--green); margin: 28px auto 0; }

/* ============================================
   HOW IT WORKS — STEPS
   ============================================ */

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-lt);
}

.step {
  padding: 44px 32px;
  border-right: 1px solid var(--border-lt);
}
.step:last-child { border-right: none; }

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.3rem; color: var(--black); margin-bottom: 10px; }
.step p  { font-size: 0.88rem; color: #333; line-height: 1.65; }

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}

.stat-item {
  padding: 52px 32px;
  text-align: center;
  border-right: 1px solid var(--border-lt);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-light);
  font-family: 'Space Grotesk', sans-serif;
}

/* ============================================
   PRODUCT CARDS  (on white background)
   ============================================ */

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-body {
  padding: 20px 22px 24px;
}

.product-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
  font-family: 'Space Grotesk', sans-serif;
}

.product-card-body h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 8px; }
.product-card-body p  { font-size: 0.83rem; color: var(--grey-light); line-height: 1.55; margin-bottom: 16px; }

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

/* ============================================
   DONATE / CTA BANNER
   ============================================ */

.donate-banner {
  background: var(--green);
  padding: 64px 28px;
  text-align: center;
}

.donate-banner h2   { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.donate-banner p    { color: rgba(255,255,255,0.72); max-width: 460px; margin: 0 auto 32px; font-size: 1rem; }

.btn-pair {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TEAM
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid var(--border-lt);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-member h4    { color: var(--black); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-role         { font-size: 0.82rem; color: var(--green); font-weight: 500; margin-bottom: 4px; }
.team-detail       { font-size: 0.78rem; color: var(--grey-light); line-height: 1.5; }

/* ============================================
   CONTACT
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2   { margin-bottom: 18px; color: var(--black); }
.contact-info > p  { margin-bottom: 36px; }

.contact-detail        { margin-bottom: 22px; }
.contact-detail-label  {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
}
.contact-detail-value  { font-size: 0.92rem; color: var(--grey-mid); }

.form-group     { margin-bottom: 18px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  color: var(--black);
  padding: 13px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus    { border-color: var(--green); }

.form-group textarea        { min-height: 130px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-group select option   { background: var(--white); color: var(--black); }

/* ============================================
   INFO BOX
   ============================================ */

.info-box {
  border: 1px solid var(--border-lt);
  border-left: 3px solid var(--green);
  background: var(--off-white);
  padding: 20px 24px;
}

.info-box p        { font-size: 0.88rem; color: var(--grey-mid); line-height: 1.65; margin: 0; }
.info-box strong   { color: var(--grey-dark); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dk);
  padding: 60px 28px 36px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dk);
  margin-bottom: 28px;
}

/* Footer logo — rendered as white wordmark text */
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-tagline        { font-size: 0.82rem; color: #444; }

.footer-col h5         { color: #888; margin-bottom: 14px; }
.footer-col ul li      { margin-bottom: 9px; }
.footer-col ul li a    { font-size: 0.85rem; color: #4a4a4a; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p          { font-size: 0.85rem; color: #4a4a4a; line-height: 1.7; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.75rem; color: #3a3a3a; }

.footer-social     { display: flex; gap: 20px; }
.footer-social a   { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #3a3a3a; transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  max-width: 92vw;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-lt);
  flex-shrink: 0;
}
.cart-sidebar-header h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.1em;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--black); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 280px;
  text-align: center;
  padding: 32px 16px;
}
.cart-empty svg          { color: #ddd; margin-bottom: 20px; }
.cart-empty-title        { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.cart-empty-sub          { font-size: 0.83rem; color: var(--grey-light); margin-bottom: 28px; line-height: 1.6; max-width: 240px; }

/* Cart items */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-lt);
  gap: 12px;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-tag   { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.cart-item-name  { font-size: 0.9rem; font-weight: 600; color: var(--black); font-family: 'Space Grotesk', sans-serif; }
.cart-item-price { font-size: 0.8rem; color: var(--grey-light); margin-top: 2px; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.cart-qty-btn {
  background: var(--off-white);
  border: none;
  cursor: pointer;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  transition: background 0.15s;
}
.cart-qty-btn:hover { background: var(--light); }
.cart-qty-num {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  width: 22px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
}
.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  margin-left: 4px;
  padding: 3px;
  transition: color 0.2s;
}
.cart-remove-btn:hover { color: #c53030; }

/* Footer */
.cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-lt);
  flex-shrink: 0;
  background: var(--off-white);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-total-label  { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-mid); font-family: 'Space Grotesk', sans-serif; }
.cart-total-amount { font-size: 1.6rem; font-weight: 900; color: var(--black); }
.cart-footer-note  { font-size: 0.72rem; color: var(--green); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.04em; }
.cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.cart-checkout-btn:hover { background: var(--green-dark); }

/* Badge on cart nav icon */
.cart-icon-wrap { position: relative; display: flex; align-items: center; }
.cart-badge {
  position: absolute;
  top: -7px; right: -8px;
  background: var(--green);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  padding: 0 3px;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links a:not(.nav-cta):not(.active) { display: none; }
  .nav-links { gap: 12px; }

  .grid-2            { grid-template-columns: 1fr; gap: 40px; }
  .grid-3            { grid-template-columns: 1fr; gap: 24px; }
  .steps-row         { grid-template-columns: 1fr; }
  .step              { border-right: none; border-bottom: 1px solid var(--border-lt); }
  .step:last-child   { border-bottom: none; }
  .stats-bar         { grid-template-columns: 1fr; }
  .stat-item         { border-right: none; border-bottom: 1px solid var(--border-lt); }
  .stat-item:last-child { border-bottom: none; }
  .products-grid     { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout    { grid-template-columns: 1fr; gap: 48px; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom     { flex-direction: column; gap: 10px; text-align: center; }
  .hero-ctas         { flex-direction: column; align-items: center; }
  .btn-pair          { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav       { padding: 0 16px; }
  .page-header { padding: 60px 16px 48px; }
}
