/* ============================================================
   ICP SITE — PUBLIC STYLESHEET
   PT Indera Ciptapratama Perkasa | Fire Protection Since 1985
   ============================================================ */

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

:root {
  /* Brand */
  --red:         #D42B2B;
  --red-dark:    #B02020;
  --red-light:   #F5E8E8;

  /* Neutrals */
  --ink:         #1A1A1A;
  --ink-2:       #3A3A3A;
  --muted:       #6B7280;
  --muted-light: #9CA3AF;

  /* Surfaces */
  --bg:          #FAFAFA;
  --white:       #FFFFFF;
  --surface:     #F3F4F6;
  --border:      #E5E7EB;

  /* Dark footer */
  --footer-bg:   #181818;
  --footer-text: #B0B0B0;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-red:  0 8px 30px rgba(212,43,43,0.25);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Transition */
  --t: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── PREVIEW BANNER ── */
.preview-banner {
  background: var(--ink);
  color: #fff;
  border-bottom: 2px solid var(--red);
}
.preview-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  font-size: 13px;
}
.preview-banner-inner strong { margin-right: 10px; }
.preview-banner-inner span { color: rgba(255,255,255,0.6); }
.preview-banner-actions { display: flex; gap: 14px; }
.preview-banner-actions a { color: var(--red); font-weight: 700; }
.preview-banner-actions a:hover { color: #fff; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-mark {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(212,43,43,0.3);
}

.brand-logo-shell {
  width: 154px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.brand-text small {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.site-nav a:hover { color: var(--ink); background: var(--surface); }
.site-nav a.active { color: var(--red); font-weight: 600; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212,43,43,0.25);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--border);
  color: var(--ink-2);
}
.btn-secondary:hover {
  border-color: #C4C9D0;
  background: var(--surface);
  transform: translateY(-1px);
}

.btn-outline-red {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* Site nav CTA button */
.site-nav .btn { margin-left: 8px; }

/* ── HERO ── */
.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, #FFF5F5 0%, #FEE9E9 100%);
  z-index: 0;
  border-radius: 0 0 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--red-light);
  border: 1px solid rgba(212,43,43,0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--red-light);
  border: 1px solid rgba(212,43,43,0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--red); }

.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-trust-item::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(212,43,43,0.1);
  color: var(--red);
  border-radius: 50%;
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

/* Media frames */
.media-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.media-frame--feature {
  aspect-ratio: 11 / 8;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.media-frame--detail {
  aspect-ratio: 16 / 10;
  margin-bottom: 28px;
  border-radius: 10px;
  background: var(--surface);
}

.media-frame--detail-tight {
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border-radius: 10px;
  background: var(--surface);
}

.media-frame--gallery {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: var(--surface);
}

.media-frame--cta {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}

.media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.media-placeholder--brand {
  background: linear-gradient(145deg, var(--ink) 0%, #2D1A1A 60%, #3D1010 100%);
  color: rgba(255,255,255,0.9);
}

/* ── SECTIONS ── */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header--left {
  text-align: left;
  max-width: 760px;
  margin: 0 0 32px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-copy, .body-copy {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

/* Section title with red underline accent */
.section-title-line {
  display: inline-block;
  position: relative;
}
.section-title-line::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 48px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* ── TWO-COL LAYOUTS ── */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.hero-grid.two-col { align-items: center; }

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

/* ── CARDS ── */
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.content-card--accent {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #FFF8F8 100%);
}

.content-card h1,
.content-card h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.content-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.product-card,
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}

.product-card:hover,
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.article-card .body,
.product-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.article-card .body h3,
.product-card .body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.article-card .body .btn,
.product-card .body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Thumb */
.thumb {
  aspect-ratio: 16 / 10;
  background: var(--surface);
  overflow: hidden;
}
.thumb .media-img,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .thumb .media-img,
.article-card:hover .thumb .media-img,
.product-card:hover .thumb img,
.article-card:hover .thumb img {
  transform: scale(1.04);
}

/* Meta labels */
.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.meta span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  padding: 3px 10px;
  border-radius: 999px;
}
.meta span + span {
  color: var(--muted);
  background: var(--surface);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
}

.brand-card-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--red-light);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-card p {
  color: var(--muted);
  line-height: 1.8;
}

.brand-card-logo-shell {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.brand-card-logo {
  width: auto;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-page-showcase {
  margin-bottom: 32px;
}

.highlight-panel {
  background: linear-gradient(145deg, var(--ink) 0%, #2A0E0E 100%);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.68);
}

.highlight-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
}

.highlight-panel h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.highlight-panel p {
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

.bullet-list,
.proof-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.bullet-list li,
.proof-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  line-height: 1.7;
}

.bullet-list li::before,
.proof-list li::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
}

.section-actions {
  margin-top: 22px;
}

.industry-layout,
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}

/* ── ABOUT / TWO-COL SECTION ── */
.about-section {
  background: var(--white);
}
.about-content { display: flex; flex-direction: column; gap: 20px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #1A0505 0%, #2D0A0A 50%, #1A0505 100%);
  border: 1px solid rgba(212,43,43,0.3);
  border-radius: var(--r-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(circle, rgba(212,43,43,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.cta-strip .body-copy { color: rgba(255,255,255,0.7); margin-bottom: 28px; position: relative; }
.cta-strip .btn-primary { box-shadow: var(--shadow-red); position: relative; }
.cta-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  position: relative;
}
.cta-strip-grid > div:first-child {
  text-align: left;
}
.cta-strip-visual {
  width: 100%;
}

/* ── CONTENT-RICH (article/page body) ── */
.content-rich {
  line-height: 1.9;
  color: var(--ink-2);
  font-size: 16px;
}
.content-rich h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 2em 0 0.6em;
}
.content-rich h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 1.6em 0 0.5em;
}
.content-rich p { margin-bottom: 1.2em; }
.content-rich ul, .content-rich ol {
  padding-left: 22px;
  margin-bottom: 1.2em;
}
.content-rich li { margin-bottom: 0.4em; }
.content-rich strong { font-weight: 700; color: var(--ink); }
.content-rich a { color: var(--red); text-decoration: underline; }
.content-rich a:hover { color: var(--red-dark); }

/* ── SIDEBAR WIDGETS (article/product detail) ── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── GRID UTILITY ── */
.grid { display: grid; gap: 20px; }

/* ── ACTIONS ── */
.actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── LIST-CLEAN ── */
.list-clean { display: grid; gap: 10px; }
.list-clean a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--t);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.list-clean a:hover { color: var(--red); }
.list-clean span { font-size: 14px; color: var(--muted); }

/* ── STATS BAR (trust section) ── */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ── CATEGORY FILTER ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-bar .btn { border-radius: 999px; }

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2D1A1A 100%);
  padding: 56px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(212,43,43,0.15));
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.page-hero .lead { color: rgba(255,255,255,0.72); margin-bottom: 0; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--muted);
  transition: all var(--t);
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .active span,
.pagination [aria-current="page"] span {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 700;
}

/* ── FOOTER ── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 0;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer .list-clean a,
.footer .list-clean span {
  font-size: 14px;
  color: var(--footer-text);
  padding: 0;
  border-bottom: none;
}
.footer .list-clean a:hover { color: var(--red); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-logo-shell {
  width: 148px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.footer-brand-logo {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-mark {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.footer-brand-text { font-size: 14px; font-weight: 600; color: #fff; }

.footer .body-copy { font-size: 14px; line-height: 1.7; color: var(--footer-text); }

.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid,
  .industry-layout,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero::before { display: none; }
  .hero { padding: 48px 0 40px; }

  .hero-grid,
  .two-col,
  .split-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .media-frame--feature { aspect-ratio: 4 / 3; }

  .cards-grid { grid-template-columns: 1fr; }
  .brand-grid,
  .industry-layout,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .site-header-inner { padding: 12px 0; }
  .brand-logo-shell {
    width: 128px;
    height: 52px;
  }
  .brand-text strong {
    font-size: 14px;
  }
  .preview-banner-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  .cta-strip { padding: 36px 24px; }
  .cta-strip-grid { grid-template-columns: 1fr; }
  .cta-strip-grid > div:first-child { text-align: center; }
  .media-frame--cta { aspect-ratio: 4 / 3; }
  .section { padding: 48px 0; }
  .content-card { padding: 24px; }
  .highlight-panel { padding: 24px; }

  .filter-bar { gap: 6px; }
}

@media (max-width: 480px) {
  .brand-logo-shell {
    width: 108px;
    height: 46px;
  }
  .footer-brand-logo-shell {
    width: 118px;
    height: 48px;
  }
  .site-nav {
    gap: 2px;
    font-size: 13px;
  }
  .site-nav a { padding: 6px 8px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
