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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #f5f4f0; color: #1a1a1a; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --blue: #0076a3;
  --blue-light: #e8f4fa;
  --blue-mid: #f0f7fa;
  --border: #e0ddd6;
  --bg: #f5f4f0;
  --dark: #111;
  --mid: #555;
  --light: #aaa;
  --white: #fff;
  --radius: 10px;
  --radius-sm: 4px;
}

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }

/* ── NAV ───────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: var(--white);
  border-bottom: 1px solid #e8e6e0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 44px; object-fit: contain; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 13px; color: var(--mid); letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-call:hover { background: var(--blue); color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.nav-cta:hover { background: #005f85; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE HERO (inner pages) ──────────────────── */
.page-hero { background: var(--blue); padding: 64px 40px; }
.page-hero-inner { max-width: 1080px; margin: 0 auto; }
.crumb { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 12px; letter-spacing: 0.5px; }
.page-hero h1 { font-size: 52px; font-weight: 700; color: var(--white); margin: 0 0 12px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.7; font-weight: 300; margin: 0; }

/* ── SHARED SECTIONS ──────────────────────────── */
.section { padding: 72px 40px; max-width: 1080px; margin: 0 auto; }
.sec-label { font-size: 11px; letter-spacing: 2px; color: var(--blue); margin-bottom: 10px; font-weight: 500; text-transform: uppercase; }
.section h2 { font-size: 40px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.section-sub { font-size: 15px; color: #888; margin: 0 0 44px; font-weight: 300; line-height: 1.6; }
hr.div { border: none; border-top: 1px solid #e8e6e0; margin: 0; }

/* ── BUTTONS ──────────────────────────────────── */
.btn-p {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  border: none;
}
.btn-p:hover { background: #005f85; }
.btn-g {
  display: inline-block;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.btn-g:hover { border-color: var(--blue); color: var(--blue); }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #2e7d32;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  border: none;
}
.btn-call:hover { background: #1b5e20; }

/* ── HERO (homepage) ──────────────────────────── */
.hero { background: var(--white); padding: 80px 40px 72px; }
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  border: 1px solid #b3d9ec;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  font-weight: 500;
}
.badge::before { content: '●'; font-size: 7px; }
.hero h1 { font-size: 60px; font-weight: 700; line-height: 1.0; color: var(--dark); margin: 0 0 18px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero > .hero-inner > div > p { font-size: 15px; color: #666; line-height: 1.75; margin: 0 0 28px; font-weight: 300; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-bar { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #888; }
.trust-item::before { content: '✓'; color: var(--blue); font-weight: 700; }

/* ── FORM CARD ────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-card h3 { font-size: 22px; font-weight: 600; color: var(--dark); margin: 0 0 4px; }
.form-card > p { font-size: 13px; color: #999; margin: 0 0 20px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 11px; color: #aaa; letter-spacing: 0.8px; margin-bottom: 5px; font-weight: 500; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #f9f8f5;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #222;
  font-size: 13px;
  padding: 9px 11px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  margin-top: 4px;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.form-submit:hover { background: #005f85; }

/* ── STATS BAR ────────────────────────────────── */
.stats { background: var(--blue); padding: 44px 40px; }
.stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 5px; letter-spacing: 0.8px; }

/* ── SERVICE CARDS (homepage) ─────────────────── */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.svc:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,118,163,0.08); }
.svc-icon { font-size: 28px; color: var(--blue); margin-bottom: 14px; }
.svc h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 600; color: var(--dark); margin: 0 0 8px; }
.svc p { font-size: 13px; color: #777; line-height: 1.7; margin: 0 0 16px; }
.svc-link { font-size: 12px; color: var(--blue); font-weight: 500; }

/* ── SERVICE DETAIL CARDS (services page) ──────── */
.svc-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}
.svc-detail:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.svc-detail-inner { padding: 28px; }
.svc-detail-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 16px; }
.svc-detail-icon { font-size: 32px; color: var(--blue); flex-shrink: 0; margin-top: 4px; }
.svc-detail-head h3 { font-size: 28px; font-weight: 700; color: var(--dark); margin: 0 0 6px; }
.svc-detail-head p { font-size: 14px; color: #777; line-height: 1.6; margin: 0; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc-tag { background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.3px; }

/* ── GUARANTEES ───────────────────────────────── */
.guarantees { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; text-align: center; }
.g-icon { font-size: 22px; color: var(--blue); margin-bottom: 10px; }
.g-title { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 5px; }
.g-text { font-size: 12px; color: #aaa; line-height: 1.6; }

/* ── CLIENT INDUSTRY CARDS ───────────────────── */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.ind-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,118,163,0.08); }
.ind-card-top { background: var(--blue-mid); padding: 32px; text-align: center; }
.ind-icon { font-size: 40px; color: var(--blue); margin-bottom: 8px; }
.ind-card-top h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; color: var(--dark); margin: 0; }
.ind-card-body { padding: 20px 24px; }
.ind-card-body p { font-size: 13px; color: #777; line-height: 1.7; margin: 0 0 14px; }
.ind-services { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-tag { background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px; }

/* ── WHY CHOOSE GRID ──────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 18px; align-items: flex-start; }
.why-icon { font-size: 24px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.why-card h4 { font-size: 15px; font-weight: 500; color: var(--dark); margin: 0 0 6px; }
.why-card p { font-size: 13px; color: #aaa; line-height: 1.6; margin: 0; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.testi-stars { color: #f0a500; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 13px; color: #555; line-height: 1.7; margin: 0 0 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: var(--blue); flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--dark); }
.testi-biz { font-size: 11px; color: #aaa; }

/* ── CLIENTS SECTION (homepage) ──────────────── */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.client-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.client-icon { font-size: 28px; color: #ccc; margin-bottom: 10px; }
.client-card h4 { font-size: 15px; font-weight: 500; color: var(--dark); margin: 0 0 5px; }
.client-card p { font-size: 12px; color: #aaa; margin: 0; line-height: 1.6; }

/* ── BRANDS PAGE ──────────────────────────────── */
.brand-category { margin-bottom: 48px; }
.brand-category-label { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; color: var(--dark); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); }
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-card:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(0,118,163,0.08); }
.brand-card img { max-height: 44px; max-width: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.55); transition: filter 0.2s; margin-bottom: 8px; }
.brand-card:hover img { filter: grayscale(0%) opacity(1); }
.brand-card span { font-size: 12px; font-weight: 500; color: #666; line-height: 1.3; }

/* ── CLIENT LOGO STRIP ────────────────────────── */
.client-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center; }
.client-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition: border-color 0.2s;
}
.client-logo-card:hover { border-color: var(--blue); }
.client-logo-card img { max-height: 40px; max-width: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: filter 0.2s; }
.client-logo-card:hover img { filter: grayscale(0%) opacity(1); }
.client-logo-card span { font-size: 12px; font-weight: 500; color: #888; text-align: center; }

/* ── ABOUT PAGE ───────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text .sec-label { margin-bottom: 10px; }
.about-text h2 { font-size: 40px; font-weight: 700; color: var(--dark); margin: 0 0 16px; }
.about-text p { font-size: 15px; color: #666; line-height: 1.8; margin: 0 0 14px; font-weight: 300; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cert-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; text-align: center; }
.cert-icon { font-size: 26px; color: var(--blue); margin-bottom: 10px; }
.cert-title { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 5px; }
.cert-text { font-size: 12px; color: #aaa; line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.value-icon { font-size: 26px; color: var(--blue); margin-bottom: 14px; }
.value-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 600; color: var(--dark); margin: 0 0 8px; }
.value-card p { font-size: 13px; color: #777; line-height: 1.7; margin: 0; }
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photo-strip img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); }

/* ── CONTACT PAGE ─────────────────────────────── */
.contact-wrap { background: var(--white); padding: 72px 40px; }
.contact-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 38px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.contact-info > p { font-size: 14px; color: #777; margin: 0 0 28px; line-height: 1.7; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contact-row-icon { color: var(--blue); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.contact-row-text { font-size: 14px; color: #444; line-height: 1.6; }
.contact-row-text strong { display: block; font-size: 11px; color: #aaa; letter-spacing: 0.8px; margin-bottom: 2px; font-weight: 500; text-transform: uppercase; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; font-size: 13px; color: #666; margin-top: 6px; }
.map-frame { width: 100%; height: 320px; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; margin-top: 28px; }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ── BLOG PAGE ────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.blog-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,118,163,0.08); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-tag { font-size: 10px; font-weight: 500; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.blog-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 0 0 8px; line-height: 1.3; }
.blog-card p { font-size: 13px; color: #777; line-height: 1.6; margin: 0 0 16px; }
.blog-meta { font-size: 11px; color: #bbb; }

/* ── CAREERS PAGE ─────────────────────────────── */
.careers-layout { display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: start; }
.careers-info h2 { font-size: 38px; font-weight: 700; color: var(--dark); margin: 0 0 16px; }
.careers-info p { font-size: 14px; color: #777; line-height: 1.8; margin: 0 0 24px; font-weight: 300; }
.benefit-list { list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #555; padding: 10px 0; border-bottom: 1px solid #f0ede8; }
.benefit-list li::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* ── REFRIGERANT CARDS ────────────────────────── */
.ref-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ref-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.ref-card-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.ref-icon { font-size: 32px; color: var(--blue); flex-shrink: 0; margin-top: 4px; }
.ref-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 6px; }
.ref-badge-ready { background: #e8f5e9; color: #2e7d32; }
.ref-badge-soon { background: #fff3e0; color: #e65100; }
.ref-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--dark); margin: 0; }
.ref-card p { font-size: 13px; color: #666; line-height: 1.75; margin: 0 0 10px; font-weight: 300; }
@media (max-width: 768px) { .ref-grid { grid-template-columns: 1fr; } }

/* ── CTA BAND ─────────────────────────────────── */
.cta-band { background: var(--blue-mid); border-top: 1px solid #d4e8f2; border-bottom: 1px solid #d4e8f2; padding: 56px 40px; text-align: center; }
.cta-band h2 { font-size: 38px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.cta-band p { font-size: 15px; color: #888; margin: 0 0 26px; font-weight: 300; }
.cta-btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ───────────────────────────────────── */
.footer { background: var(--white); border-top: 1px solid #e8e6e0; padding: 36px 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo img { height: 36px; object-fit: contain; }
.footer p { font-size: 12px; color: #aaa; margin: 4px 0 0; }
.footer-right { text-align: right; font-size: 12px; color: #aaa; line-height: 1.8; }
.footer-right span { color: var(--blue); }

/* ── MOBILE NAV ───────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 14px 20px; position: relative; }
  .nav-call { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #e8e6e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; font-size: 14px; border-bottom: 1px solid #f5f4f0; }
  .nav-toggle { display: flex; }
}

/* ── RESPONSIVE GRIDS ─────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .form-card { max-width: 500px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .guarantees { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .client-logos { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 48px 20px; }
  .hero h1 { font-size: 44px; }
  .section { padding: 52px 20px; }
  .page-hero { padding: 44px 20px; }
  .page-hero h1 { font-size: 40px; }
  .services { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .careers-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .client-logos { grid-template-columns: repeat(3, 1fr); }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-right { text-align: center; }
  .cta-band { padding: 44px 20px; }
  .contact-wrap { padding: 52px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .client-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .guarantees { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .photo-strip { grid-template-columns: 1fr; }
}
