:root {
  --bg: #f4faf8;
  --surface: #ffffff;
  --surface-soft: #eef8f5;
  --surface-dark: #0f172a;
  --surface-deep: #112135;
  --text: #10243a;
  --muted: #5b6d7f;
  --line: #d7e7e2;
  --primary: #0f766e;
  --primary-dark: #115e59;
  --secondary: #155e75;
  --secondary-soft: #e8f3f8;
  --accent: #34d399;
  --success: #117a4f;
  --danger: #b42318;
  --warning: #b45309;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(52, 211, 153, 0.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(21, 94, 117, 0.08), transparent 30%),
    linear-gradient(180deg, #f6fffd 0%, #ffffff 46%, #f3fbf9 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-tight { padding: 4rem 0; }
.section-slab {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf9 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.grid { display: grid; gap: 1.5rem; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(215, 231, 226, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-body { padding: 1.6rem; }
.muted { color: var(--muted); }
.small { font-size: .92rem; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 70ch; }
.display { font-size: clamp(2.6rem, 5vw, 4.7rem); line-height: 1.02; margin: 0 0 1rem; letter-spacing: -0.04em; }
.h1, h1 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; margin: 0 0 1rem; letter-spacing: -0.03em; }
.h2, h2 { font-size: clamp(1.55rem, 2.8vw, 2.35rem); line-height: 1.15; margin: 0 0 1rem; letter-spacing: -0.02em; }
.h3, h3 { font-size: 1.18rem; line-height: 1.3; margin: 0 0 .6rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.2rem; }
li + li { margin-top: .5rem; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .8rem 1rem;
  border-radius: 999px;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.12);
  padding: .54rem .95rem;
  border-radius: 999px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.18rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 18px 30px rgba(15, 118, 110, 0.22);
}
.btn-primary:hover, .btn-dark:hover { color: #fff; }
.btn-secondary {
  background: rgba(255,255,255,.94);
  color: var(--text);
  border-color: rgba(215, 231, 226, 0.95);
}
.btn-dark {
  background: var(--surface-dark);
  color: #fff;
}
.btn-block { width: 100%; }
.list-clean { list-style: none; padding: 0; }
.list-clean li { display: flex; gap: .75rem; align-items: flex-start; }
.list-clean li::before { content: "•"; color: var(--accent); font-weight: 900; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .72rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 700;
}
.badge-success { color: var(--success); background: rgba(17,122,79,.08); border-color: rgba(17,122,79,.16); }
.badge-danger { color: var(--danger); background: rgba(180,35,24,.08); border-color: rgba(180,35,24,.16); }
.badge-warning { color: var(--warning); background: rgba(180,83,9,.10); border-color: rgba(180,83,9,.18); }
.badge-info { color: var(--secondary); background: rgba(21,94,117,.08); border-color: rgba(21,94,117,.16); }
.icon-circle,
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15,118,110,.12), rgba(21,94,117,.12));
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.inline-meta span {
  background: rgba(255,255,255,.82);
  padding: .52rem .78rem;
  border: 1px solid rgba(215,231,226,.95);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--muted);
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.5rem; }
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 231, 226, 0.9);
}
.top-bar {
  background: linear-gradient(135deg, #0f172a 0%, #12324c 100%);
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem 0;
}
.top-bar-links { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.top-bar a { color: #fff; }
.main-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 92px;
  padding: .85rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .95rem;
  color: var(--text);
  font-weight: 800;
  min-width: 0;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ebfbf8 0%, #daf3ee 100%);
  border: 1px solid rgba(15,118,110,.10);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(15,118,110,.10);
  flex: 0 0 auto;
  overflow: hidden;
}
.brand-logo-image { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name { font-size: 1.06rem; }
.brand-sub { font-size: .76rem; color: var(--muted); font-weight: 600; }
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
  min-width: 0;
}
.nav-links { display: flex; align-items: center; gap: 1.12rem; white-space: nowrap; }
.nav-links a { color: var(--text); font-weight: 600; }
.nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.mobile-toggle {
  display: none;
  border: 0;
  background: var(--surface-soft);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  margin: 0 auto;
  content: "";
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 4px; }
.mobile-call-cta {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 6.25rem 0 4.5rem;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  z-index: -1;
}
.hero::before { width: 360px; height: 360px; right: -120px; top: 10px; background: rgba(52,211,153,.18); }
.hero::after { width: 320px; height: 320px; left: -100px; bottom: 10px; background: rgba(21,94,117,.12); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 2rem; align-items: center; }
.hero-copy p { max-width: 66ch; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.2rem; }
.hero-pills span {
  padding: .58rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(215,231,226,.9);
  font-weight: 600;
  font-size: .94rem;
}
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.metric {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(215,231,226,.94);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.metric strong { display: block; font-size: 1.25rem; margin-bottom: .25rem; }
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 82%;
  height: 84%;
  background: linear-gradient(135deg, rgba(15,118,110,.12), rgba(21,94,117,.10));
  border-radius: 34px;
  z-index: -1;
}
.hero-visual img {
  width: 100%;
  border-radius: 34px;
  border: 1px solid rgba(215,231,226,.95);
  background: #fff;
  box-shadow: var(--shadow);
}
.feature-strip {
  background: rgba(255,255,255,.84);
  border-top: 1px solid rgba(215,231,226,.95);
  border-bottom: 1px solid rgba(215,231,226,.95);
}
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem 0;
}
.feature-item { display: flex; gap: .9rem; align-items: flex-start; }
.feature-item strong { display: block; margin-bottom: .12rem; }
.feature-item span { color: var(--muted); font-size: .95rem; }
.service-card,
.pricing-card,
.blog-card,
.step-card,
.testimonial,
.stat-card { height: 100%; }
.service-card .card-body,
.pricing-card .card-body,
.blog-card .card-body,
.step-card .card-body { display: flex; flex-direction: column; height: 100%; }
.service-card .actions,
.pricing-card .price-note,
.blog-card .actions { margin-top: auto; padding-top: 1rem; }
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .72rem;
  background: rgba(21,94,117,.08);
  color: var(--secondary);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; align-items: start; }
.highlight-box,
.service-hero-card {
  padding: 1.7rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #12324c 50%, #0f766e 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.highlight-box .muted,
.highlight-box p,
.service-hero-card p,
.service-hero-card li { color: rgba(255,255,255,.86); }
.service-hero-card .badge,
.highlight-box .badge {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.16);
}
.timeline { position: relative; padding-left: 1.2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: .28rem;
  top: .4rem;
  bottom: .4rem;
  width: 2px;
  background: rgba(255,255,255,.22);
}
.timeline-item { position: relative; padding-left: 1.1rem; }
.timeline-item + .timeline-item { margin-top: 1rem; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.02rem;
  top: .33rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bbf7d0;
  box-shadow: 0 0 0 4px rgba(255,255,255,.10);
}
.faq-item {
  border: 1px solid rgba(215,231,226,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: .9rem; }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-answer { padding: 0 1.2rem 1.2rem; color: var(--muted); display: none; }
.faq-item.open .faq-answer { display: block; }
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #12324c 48%, #0f766e 100%);
  color: #fff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255,255,255,.84); }
.section-header.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}
.section-header.cta-layout > div:last-child { display: flex; justify-content: flex-end; align-items: center; }
.form-card,
.contact-card,
.admin-card {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(215,231,226,.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-section,
.contact-section,
.admin-section { padding: 1.6rem; }
.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: .95rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(215,231,226,.95);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: .95rem 1rem;
}
textarea { min-height: 170px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(15,118,110,.12);
  border-color: rgba(15,118,110,.36);
}
.form-note { font-size: .94rem; color: var(--muted); }
.alert { border-radius: 18px; padding: 1rem; border: 1px solid transparent; margin-bottom: 1rem; }
.alert-success { background: rgba(17,122,79,.08); border-color: rgba(17,122,79,.18); color: var(--success); }
.alert-danger { background: rgba(180,35,24,.08); border-color: rgba(180,35,24,.15); color: var(--danger); }
.alert-info { background: rgba(15,118,110,.08); border-color: rgba(15,118,110,.18); color: var(--primary); }
.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.page-hero {
  padding: 4.7rem 0 2.7rem;
  background:
    radial-gradient(circle at top right, rgba(52,211,153,.10), transparent 28%),
    linear-gradient(180deg, #f7fffd 0%, #ffffff 100%);
}
.page-header-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items: start; }
.page-panel {
  background: linear-gradient(180deg, #ffffff 0%, #eef8f5 100%);
  border: 1px solid rgba(215,231,226,.95);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.breadcrumb { color: var(--muted); font-size: .95rem; margin-bottom: .8rem; }
.issue-grid,
.service-detail-list,
.check-list,
.care-feature-list {
  list-style: none;
  padding: 0;
}
.issue-grid li,
.service-detail-list li,
.check-list li,
.care-feature-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.issue-grid li::before,
.service-detail-list li::before,
.check-list li::before,
.care-feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}
.kpi-band,
.status-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.blog-grid { align-items: stretch; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(215,231,226,.95);
}
.blog-meta { display: flex; flex-direction: column; gap: .45rem; }
.blog-post .blog-post-content { line-height: 1.78; }
.blog-post .blog-post-content p { margin: 0 0 1rem; }
.blog-post .blog-post-content ul,
.blog-post .blog-post-content ol { margin: 0 0 1rem 1.25rem; }
.blog-post .blog-post-content a { text-decoration: underline; text-underline-offset: 3px; }
.blog-post .blog-post-content blockquote {
  margin: 1.1rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid rgba(15,118,110,.28);
  background: rgba(15,118,110,.06);
  border-radius: var(--radius-sm);
}
.blog-post .blog-post-content pre {
  overflow: auto;
  padding: 1rem 1.1rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.blog-featured-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
  margin: 0 0 1rem;
}
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #112135 100%);
  color: rgba(255,255,255,.84);
  margin-top: 4rem;
}
.footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer .brand-sub { color: rgba(255,255,255,.68); }
.footer-bottom {
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.hidden { display: none !important; }
.table-note { font-size: .95rem; color: var(--muted); }
.cta-band .hero-actions { display: flex; flex-wrap: nowrap; gap: 1rem; }
.cta-band .hero-actions .btn { min-width: 150px; }
.helper-links { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.25rem; }
.logo-upload-grid { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; align-items: start; }
.logo-preview {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  background: #f3fbf9;
  border: 1px dashed rgba(15,118,110,.25);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.logo-preview img { width: 100%; height: 100%; object-fit: cover; }
.setting-stack > * + * { margin-top: 1rem; }
.inline-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
hr.soft { border: 0; border-top: 1px solid var(--line); margin: 1.3rem 0; }
.admin-shell { min-height: 100vh; background: linear-gradient(180deg, #f7fffd 0%, #edf7f4 100%); }
.admin-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}
.admin-grid { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; padding: 1.8rem 0 3rem; }
.admin-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  height: fit-content;
  box-shadow: var(--shadow);
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem .95rem;
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
}
.admin-nav a.active,
.admin-nav a:hover { background: rgba(15,118,110,.08); color: var(--primary); }
.admin-toolbar { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: space-between; margin-bottom: 1rem; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 2rem; }
.login-card {
  width: min(100%, 480px);
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.search-row { display: grid; gap: .8rem; grid-template-columns: 1.2fr .7fr .6fr; }
@media (max-width: 1080px) {
  .feature-strip .container,
  .cards-4,
  .metric-row,
  .kpi-band,
  .status-grid,
  .footer-grid,
  .hero-grid,
  .split,
  .page-header-grid,
  .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; }
  .main-nav {
    min-height: 84px;
    padding: .7rem 0 .85rem;
    position: relative;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "call call";
    row-gap: .85rem;
  }
  .brand { grid-area: brand; }
  .mobile-toggle { grid-area: toggle; display: inline-grid; place-items: center; }
  .mobile-call-cta {
    grid-area: call;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    font-weight: 800;
    padding: .95rem 1.1rem;
    box-shadow: 0 18px 32px rgba(15,118,110,.22);
  }
  .nav-shell {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    display: none;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  }
  .nav-shell.open { display: block; }
  .nav-links,
  .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-actions { margin-top: .4rem; }
  .site-header .top-bar { display: none !important; height: 0 !important; overflow: hidden !important; }
}
@media (max-width: 860px) {
  .cards-3,
  .cards-2,
  .feature-strip .container,
  .stat-grid,
  .logo-upload-grid,
  .form-grid,
  .search-row,
  .section-header.cta-layout { grid-template-columns: 1fr; }
  .section,
  .hero { padding-top: 4rem; }
  .blog-card-image { height: 200px; }
}
@media (max-width: 720px) {
  .metric-row,
  .kpi-band,
  .status-grid,
  .feature-strip .container { grid-template-columns: 1fr; }
  .cta-band .hero-actions { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .section-header,
  .hero-actions,
  .helper-links { flex-direction: column; align-items: stretch; }
  .display { font-size: 2.25rem; }
  .hero-visual img,
  .cta-band,
  .page-panel,
  .form-card,
  .contact-card,
  .admin-card,
  .card,
  .service-hero-card,
  .highlight-box { border-radius: 22px; }
  .brand-name { font-size: .98rem; }
  .brand-sub { font-size: .72rem; }
}
