/* Alpha Design & Networking — main stylesheet
   Palette and motifs per brand.md. No framework, no build step. */

:root {
  --navy-deep: #001F45;
  --navy: #002D63;
  --navy-mid: #003C79;
  --navy-light: #1E4D8F;
  --accent: #C63E27;
  --accent-dark: #A6331F;
  --gray-bg: #EFEFF0;
  --white: #FFFFFF;
  --text-dark: #1A2332;
  --text-muted: #5A6472;
  --page-bg: #F7F7F8;
  --card-bg: #FFFFFF;
  --card-border: #E2E4E8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}

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

.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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

.rule { width: 46px; height: 3px; background: var(--accent); margin-top: 14px; }

/* ---- layout helpers ---- */
section.pad { padding: clamp(48px, 7vw, 88px) clamp(20px, 6vw, 72px); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 8px; }
.section-head .rule { margin-left: auto; margin-right: auto; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left .rule { margin-left: 0; }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-small { font-size: 0.8rem; padding: 9px 18px; margin-top: 14px; }
.btn-group { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ---- site header ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 64px);
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo-link { display: block; }
.site-header .logo { height: 42px; }
.site-nav { display: flex; gap: clamp(12px, 2vw, 26px); font-size: 0.9rem; font-weight: 600; }
.site-nav a { text-decoration: none; color: var(--text-dark); padding: 4px 2px; border-bottom: 2px solid transparent; white-space: nowrap; }
.site-nav a.current, .site-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: none;
  cursor: pointer;
  align-items: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 12px clamp(20px, 5vw, 64px) 20px;
    gap: 14px;
  }
  .site-nav.open { display: flex; }
}

/* ---- hero (home) ---- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: #fff;
  padding: clamp(56px, 9vw, 108px) clamp(20px, 6vw, 72px) clamp(90px, 12vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse 65% 90% at 90% 15%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 65% 90% at 90% 15%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; }
.hero .eyebrow { color: #EFC9BE; }
.hero h1 { font-size: clamp(1.7rem, 5.2vw, 3.6rem); line-height: 1.06; margin-top: 10px; overflow-wrap: anywhere; }
.hero h1 .accent { color: var(--accent); display: block; }
.hero p.lede { margin-top: 22px; font-size: clamp(1rem, 1.6vw, 1.2rem); color: #C7D3E6; max-width: 56ch; line-height: 1.6; }
.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-curve svg { width: 100%; height: auto; display: block; }

/* ---- page-hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: clamp(44px, 7vw, 72px) clamp(20px, 6vw, 72px);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.page-hero p { color: #C7D3E6; margin-top: 14px; line-height: 1.6; }

/* ---- stats bar ---- */
.stats-bar { background: var(--card-bg); border-bottom: 1px solid var(--card-border); padding: 30px clamp(20px, 6vw, 72px); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1120px; margin: 0 auto; text-align: center; }
.stats-row div strong { display: block; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); font-variant-numeric: tabular-nums; }
.stats-row div span { display: block; margin-top: 4px; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- three pillars ---- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1120px; margin: 0 auto; }
.pillar-card { background: var(--card-bg); border: 1px solid var(--card-border); border-top: 3px solid var(--accent); border-radius: 4px; padding: 30px 26px; }
.pillar-card .eyebrow { color: var(--accent); }
.pillar-card h3 { font-size: 1.15rem; margin-top: 10px; }
.pillar-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-top: 10px; }

/* ---- about teaser / stat card ---- */
.about-teaser { background: var(--gray-bg); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; max-width: 1120px; margin: 0 auto; }
.about-grid p { color: var(--text-muted); line-height: 1.7; font-size: 1rem; margin-top: 14px; }
.stat-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.stat-card div strong { display: block; font-size: 1.8rem; color: var(--navy); }
.stat-card div span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.about-side-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; }

/* ---- solutions grid ---- */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1180px; margin: 0 auto; }
.solution-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; padding: 26px 24px; transition: border-color 0.15s ease, transform 0.15s ease; overflow: hidden; }
.solution-card:hover { border-color: var(--navy-light); transform: translateY(-2px); }
.solution-thumb { width: calc(100% + 48px); margin: -26px -24px 16px; aspect-ratio: 3 / 2; height: auto; object-fit: cover; display: block; }
.icon-ring { width: 46px; height: 46px; border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); margin-bottom: 16px; font-size: 0.95rem; }
.solution-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.solution-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ---- solutions detail page (full sub-items) ---- */
.solution-detail { max-width: 900px; margin: 0 auto clamp(48px, 6vw, 72px); }
.solution-detail:last-child { margin-bottom: 0; }
.solution-detail-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.solution-detail-head .icon-ring { margin-bottom: 0; flex-shrink: 0; }
.solution-detail-head h2 { font-size: 1.4rem; }
/* ---- unified banner-photo treatment: same fixed height everywhere a
   full-width photo appears, so the site doesn't mix ad-hoc heights ---- */
.banner-photo { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; display: block; }
.banner-photo-full { width: 100%; height: 320px; object-fit: cover; display: block; }
@media (max-width: 540px) {
  .banner-photo, .banner-photo-full { height: 220px; }
}
.solution-item { border-top: 1px solid var(--card-border); padding: 20px 0; }
.solution-item:first-of-type { border-top: none; }
.solution-item h3 { font-size: 1rem; margin-bottom: 8px; }
.solution-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.solution-item .includes { margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); }
.solution-item .includes strong { color: var(--text-dark); }

/* ---- brand / certification strip ---- */
.brand-strip { background: var(--navy-deep); color: #fff; text-align: center; }
.brand-strip .eyebrow { color: #8FB0DE; }
.brand-row { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; margin-top: 26px; font-weight: 600; color: #C7D3E6; font-size: 0.95rem; }
.cert-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.cert-pill { border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; padding: 6px 16px; font-size: 0.78rem; letter-spacing: 0.05em; color: #EFC9BE; }
.insurance-note { margin-top: 22px; font-size: 0.82rem; color: #8FA6CC; }
.insurance-note strong { color: #C7D3E6; font-weight: 600; }

/* ---- featured projects ---- */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
.project-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.project-photo { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--gray-bg); }
.project-photo-img { width: 100%; height: 100%; object-fit: cover; }
.project-logo-badge {
  position: absolute; left: 12px; bottom: -14px;
  width: 56px; height: 56px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.project-card-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; }
.project-card:has(.project-photo) .project-card-body { padding-top: 26px; }
.project-tag { align-self: flex-start; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 999px; background: var(--gray-bg); color: var(--navy-light); }
.project-card h3 { font-size: 1.02rem; }
.project-card .years { font-size: 0.76rem; color: var(--text-muted); font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.project-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.status-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 8px; border-radius: 999px; }
.status-badge.status-ongoing { background: #E4F3E9; color: #1E7A46; }
.status-badge.status-completed { background: var(--gray-bg); color: var(--text-muted); }

/* ---- clients page sector sections ---- */
.sector-block { max-width: 1180px; margin: 0 auto clamp(40px, 5vw, 60px); }
.sector-block:last-of-type { margin-bottom: 0; }
.sector-block h2 { font-size: 1.3rem; margin-bottom: 22px; }

.client-wall { display: flex; flex-wrap: wrap; gap: 14px 18px; justify-content: center; align-items: center; max-width: 980px; margin: 34px auto 0; }
.client-wall span.text-chip { font-size: 0.85rem; color: var(--text-muted); padding: 4px 0; }
.client-wall span.text-chip::after { content: "\00B7"; margin-left: 18px; color: var(--card-border); }
.client-wall span.text-chip:last-child::after { content: ""; }
.client-wall .logo-chip {
  display: flex; align-items: center; justify-content: center;
  height: 44px; width: 100px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px 10px;
}
.client-wall .logo-chip img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---- products / direct-sales teaser (home) ---- */
.products-teaser { background: var(--gray-bg); }
.products-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; max-width: 1120px; margin: 0 auto; align-items: start; }
.products-layout p { color: var(--text-muted); line-height: 1.7; margin-top: 14px; }
.chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.chip-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 6px; padding: 16px 18px; font-size: 0.86rem; }
.chip-card strong { display: block; color: var(--text-dark); font-size: 0.92rem; margin-bottom: 4px; }
.chip-card span { color: var(--text-muted); font-size: 0.8rem; }

/* ---- products catalog page ---- */
.products-catalog { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1120px; margin: 0 auto; }
.product-card-full { display: flex; flex-direction: column; padding: 22px 22px 20px; }
.product-photo { width: calc(100% + 44px); aspect-ratio: 3 / 2; height: auto; object-fit: cover; border-radius: 6px; margin: -22px -22px 16px; }
.chip-brand { align-self: flex-start; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy-light); background: var(--gray-bg); border-radius: 999px; padding: 3px 10px; margin-bottom: 10px; }
.product-card-full strong { font-size: 1.02rem; color: var(--text-dark); }
.product-card-full p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-top: 8px; }
.applications-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.applications-list li { font-size: 0.76rem; color: var(--navy-light); background: var(--gray-bg); border-radius: 999px; padding: 3px 10px; }
.category-heading { max-width: 1120px; margin: clamp(40px, 5vw, 56px) auto 20px; font-size: 1.15rem; color: var(--navy); }
.category-heading:first-of-type { margin-top: 0; }

/* ---- facility management teaser (home) + page ---- */
.facility-teaser, .facility-block {
  background: var(--navy);
  background-image: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 140%);
  color: #fff;
}
.facility-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; max-width: 1120px; margin: 0 auto; align-items: center; }
.facility-layout p { color: #C7D3E6; line-height: 1.7; margin-top: 14px; }
.facility-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.facility-stats div { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 6px; padding: 16px; text-align: center; }
.facility-stats strong { display: block; font-size: 1.3rem; }
.facility-stats span { display: block; font-size: 0.72rem; color: #C7D3E6; margin-top: 4px; }

.facility-page-body { max-width: 760px; margin: 0 auto; color: var(--text-muted); line-height: 1.7; }
.facility-page-body p { margin-top: 16px; }
.facility-page-body ul { margin-top: 16px; padding-left: 20px; }
.facility-page-body li { margin-bottom: 8px; }

/* ---- contact CTA (home) ---- */
.contact-cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%); color: #fff; text-align: center; }
.contact-cta h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.contact-cta p { color: #C7D3E6; margin-top: 12px; }
.contact-details { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 28px; font-size: 0.95rem; }
.contact-details strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #8FB0DE; margin-bottom: 4px; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

/* ---- contact page ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; max-width: 1080px; margin: 0 auto; align-items: start; }
.contact-info-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; padding: 28px; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card .office { margin-top: 20px; }
.contact-info-card .office:first-of-type { margin-top: 22px; }
.contact-info-card .office h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 6px; }
.contact-info-card .office p { font-size: 0.92rem; margin: 0; line-height: 1.5; }
.contact-info-card a { color: var(--navy); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }

.contact-form { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 11px 12px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text-dark);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
.form-alert { border-radius: 6px; padding: 14px 16px; font-size: 0.9rem; margin-bottom: 20px; }
.form-alert.success { background: #E4F3E9; color: #1E7A46; }
.form-alert.error { background: #FBE8E5; color: var(--accent-dark); }

/* ---- footer ---- */
footer { background: var(--navy-deep); color: #A9BAD6; padding: 48px clamp(20px, 6vw, 72px) 26px; font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; max-width: 1180px; margin: 0 auto; }
.footer-logo { height: 34px; margin-bottom: 14px; }
.footer-tagline { max-width: 32ch; line-height: 1.6; color: #8FA6CC; margin: 0; }
.footer-grid h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a { text-decoration: none; color: #A9BAD6; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { max-width: 1180px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.78rem; color: #6E82A6; }

/* ---- coming soon ---- */
.coming-soon-body { margin: 0; }
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px 24px;
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  overflow: hidden;
}
.coming-soon::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000 0%, transparent 75%);
}
.coming-soon-inner { position: relative; max-width: 560px; }
.coming-soon-inner img { height: 54px; margin: 0 auto 28px; }
.coming-soon-inner h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; }
.coming-soon-inner p { color: #C7D3E6; margin-top: 16px; line-height: 1.6; }
.coming-soon-contact { margin-top: 28px; font-size: 1rem; font-weight: 600; }
.coming-soon-contact a { color: #fff; text-decoration: none; }
.coming-soon-contact a:hover { text-decoration: underline; }
.coming-soon-contact div { margin-top: 6px; }
.coming-soon-fine { margin-top: 30px; font-size: 0.78rem; color: #8FA6CC; letter-spacing: 0.04em; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .products-catalog { grid-template-columns: 1fr; }
  .facility-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 540px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .stat-card { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
  .facility-stats { grid-template-columns: 1fr 1fr; }
  .form-row-grid { grid-template-columns: 1fr; }
  .solution-detail-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
