/* Dell Electrical Ltd — static clone stylesheet
   Colors sourced from the live site's CSS custom properties:
   --primary: hsl(354 75% 50%) = #df2033
   --secondary / --foreground: hsl(0 0% 10%) = #1a1a1a
   --muted: hsl(0 0% 96%) = #f5f5f5
   --muted-foreground: hsl(0 0% 40%) = #666666
   --border: hsl(0 0% 90%) = #e6e6e6
*/

:root {
  --primary: #df2033;
  --primary-dark: #b81627;
  --secondary: #1a1a1a;
  --foreground: #1a1a1a;
  --background: #ffffff;
  --muted: #f5f5f5;
  --muted-foreground: #666666;
  --border: #e6e6e6;
  --white: #ffffff;
  --radius: 0.5rem;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
button { font: inherit; cursor: pointer; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  min-height: 48px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--secondary);
}
.logo span { color: var(--primary); }
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); border-color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.call-now {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--secondary);
  min-height: 44px;
  padding: 2px 0;
}
.call-now .ring-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: ring 2.5s infinite;
}
.call-now .call-text { display: flex; flex-direction: column; line-height: 1.2; }
.call-now .call-label { font-size: 0.7rem; text-transform: uppercase; color: var(--muted-foreground); font-weight: 600; }
.call-now .call-number { font-size: 1rem; }
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(0deg); }
}
.hamburger {
  display: none;
  background: none; border: none;
  width: 48px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--secondary);
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; display: block; width: 22px; height: 2px; background: currentColor;
  position: relative; transition: all 0.2s ease;
}
.hamburger span::before { position: absolute; top: -7px; }
.hamburger span::after { position: absolute; top: 7px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); background: var(--secondary); }
.hamburger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); background: var(--secondary); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.mobile-nav a {
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex; align-items: center;
}
.mobile-nav.open { display: flex; }

/* ---------- Page header banner (about/services/contact) ---------- */
.page-banner {
  position: relative;
  padding: 90px 0;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.92), rgba(26,26,26,0.75));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: 2.75rem; font-weight: 800; margin-bottom: 10px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: #ddd; font-weight: 600; }
.breadcrumb a { color: #fff; }
.breadcrumb .sep { color: var(--primary); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 60px;
  background: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: inline-block;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--secondary);
}
.hero p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 46ch;
}
.hero-media { position: relative; border-radius: 16px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Trust row */
.trust-row {
  background: var(--muted);
  padding: 40px 0;
}
.trust-row .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.trust-item p { color: var(--muted-foreground); font-size: 0.92rem; margin: 0; }

/* ---------- Section basics ---------- */
.section { padding: 80px 0; }
.section-muted { background: var(--muted); }
.section-eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 48px;
}

/* Services grid (home teaser + full services list use this card) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card-body p { color: var(--muted-foreground); font-size: 0.92rem; margin-bottom: 16px; }
.read-more {
  color: var(--primary); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.03em;
  display: inline-flex; align-items: center; min-height: 44px; padding: 4px 0;
}
.read-more:hover { text-decoration: underline; }

/* About teaser (home) */
.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-teaser-media { border-radius: 16px; overflow: hidden; }
.about-teaser-media img { width: 100%; }
.about-eyebrow { color: var(--primary); font-weight: 700; letter-spacing: 0.08em; font-size: 0.85rem; }
.about-teaser h2 { font-size: 2.1rem; font-weight: 800; margin: 12px 0 16px; }
.about-teaser > .container > div p.lead { color: var(--muted-foreground); margin-bottom: 24px; }
.rating-block { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.rating-block .num { font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.rating-block .label { color: var(--muted-foreground); font-size: 0.9rem; font-weight: 600; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.check-list li::before {
  content: "✓";
  background: var(--primary); color: #fff;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
}

/* Reviews */
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.reviews-summary .num { font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.reviews-summary .stars { color: var(--primary); letter-spacing: 2px; }
.reviews-summary .count { color: var(--muted-foreground); font-weight: 600; }
.reviews-summary a { color: var(--primary); font-weight: 700; text-decoration: underline; display: inline-flex; align-items: center; min-height: 44px; }
.static-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 36px;
}
.static-review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.static-review .stars { color: var(--primary); margin-bottom: 10px; letter-spacing: 2px; }
.static-review p { color: var(--foreground); font-size: 0.95rem; margin-bottom: 12px; }
.static-review .name { font-weight: 700; font-size: 0.9rem; }
.reviews-widget-wrap { max-width: 100%; margin: 0 auto; }
#reviews { background: var(--primary); }
#reviews .section-eyebrow, #reviews .section-title { color: #fff; }

/* Booking / contact section */
.booking {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
.booking::before { content: ""; position: absolute; inset: 0; background: rgba(20,20,20,0.88); }
.booking .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.booking-eyebrow { color: var(--primary); font-weight: 700; letter-spacing: 0.08em; font-size: 0.85rem; }
.booking h2 { font-size: 2.1rem; font-weight: 800; margin: 12px 0 16px; }
.booking p.lead { color: #ccc; margin-bottom: 32px; max-width: 46ch; }
.progress-block { margin-bottom: 32px; }
.progress-label { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 8px; }
.progress-bar { height: 8px; background: rgba(255,255,255,0.15); border-radius: 8px; overflow: hidden; }
.progress-bar > span { display: block; height: 100%; width: 95%; background: var(--primary); }
.call-anytime { display: flex; align-items: center; gap: 16px; }
.call-anytime .ring-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.call-anytime .label { font-size: 0.8rem; color: #ccc; text-transform: uppercase; font-weight: 600; }
.call-anytime .number { font-size: 1.3rem; font-weight: 800; }

.booking-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  color: var(--foreground);
}
.booking-form h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem; /* >=16px avoids iOS zoom */
  font-family: inherit;
  background: var(--muted);
  min-height: 48px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  background: #fff;
}

/* Stats row (about/services) */
.stats-row { background: var(--secondary); color: #fff; padding: 48px 0; }
.stats-row .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-row .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.stats-row .stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: #ccc; margin-top: 6px; }

/* About page mission */
.mission .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mission-media { position: relative; }
.mission-media img { border-radius: 16px; width: 100%; }
.mission-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--primary); color: #fff;
  padding: 16px 22px; border-radius: 12px; font-weight: 800; text-align: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.mission h2 { font-size: 2.1rem; font-weight: 800; margin: 12px 0 16px; }
.mission p.lead { color: var(--muted-foreground); }

/* Pricing list (about page) */
.pricing-list { max-width: 700px; margin: 0 auto; }
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border); font-weight: 600;
}
.pricing-list li .price { color: var(--primary); font-weight: 800; }

/* Services page numbered rows */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-row-media { order: 2; }
.service-row-num { color: var(--primary); font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; display: block; }
.service-row h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.service-row p { color: var(--muted-foreground); }
.service-row-media img { border-radius: 16px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* How we work steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card { text-align: center; padding: 8px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--muted-foreground); font-size: 0.9rem; margin: 0; }

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none; border: none;
  text-align: left; font-weight: 700; font-size: 1.05rem; color: var(--secondary);
  min-height: 44px;
}
.faq-question .icon { transition: transform 0.2s ease; color: var(--primary); flex-shrink: 0; margin-left: 12px; }
.faq-question[aria-expanded="true"] .icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}
.faq-answer p { color: var(--muted-foreground); margin: 0 0 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-info > p { color: var(--muted-foreground); margin-bottom: 32px; }
.contact-block { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-block .icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--muted);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-block h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-block p { margin: 0; color: var(--muted-foreground); }
.contact-block a { color: inherit; }
.contact-form-card {
  background: var(--muted);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }

/* Footer */
.site-footer { background: var(--secondary); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-col h3 { font-size: 1.05rem; margin-bottom: 20px; color: #fff; }
.footer-col ul li { color: #bbb; font-size: 0.92rem; }
.footer-col ul li a { color: #bbb; display: flex; align-items: center; min-height: 44px; padding: 6px 0; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul.footer-hours li { display: flex; align-items: center; min-height: 32px; padding: 6px 0; }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .copyright { color: #999; font-size: 0.85rem; }
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { color: #999; font-size: 0.85rem; display: inline-flex; align-items: center; min-height: 44px; }
.footer-credit {
  color: #fff;
  font-size: 0.85rem;
  text-align: right;
  display: flex; align-items: center; min-height: 44px;
}
.footer-credit a { color: #fff; text-decoration: none; font-weight: inherit; font-size: inherit; display: inline-flex; align-items: center; min-height: 44px; }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Chat popup ---------- */
.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 900; }
.chat-toggle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.15s ease;
}
.chat-toggle:hover { transform: scale(1.05); }
.chat-toggle .avatar-state,
.chat-toggle .close-state {
  position: absolute; inset: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.chat-toggle .avatar-state img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--primary);
}
.chat-toggle .online-dot {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #22c55e; border: 2px solid #fff;
}
.chat-toggle .close-state {
  background: var(--secondary);
  color: #fff;
  font-size: 1.6rem;
  display: none;
}
.chat-widget.open .chat-toggle .avatar-state { display: none; }
.chat-widget.open .chat-toggle .close-state { display: flex; }

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: none;
}
.chat-widget.open .chat-panel { display: block; }
.chat-header {
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  position: relative;
}
.chat-header img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; flex-shrink: 0; }
.chat-header .chat-title { font-weight: 800; font-size: 1rem; }
.chat-header .chat-subtitle { font-size: 0.78rem; opacity: 0.9; margin-top: 2px; }
.chat-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: #fff; font-size: 1.3rem;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.chat-body { padding: 20px; background: #fff; }
.chat-body .form-field { margin-bottom: 12px; }
.chat-body .form-field input,
.chat-body .form-field textarea {
  background: var(--muted);
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
}
.chat-body textarea { min-height: 80px; }
.chat-body .btn-dark { width: 100%; }

/* ---------- 404 ---------- */
.error-page {
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px;
}
.error-page .code { font-size: 6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.error-page h1 { font-size: 1.8rem; margin: 12px 0 12px; }
.error-page p { color: var(--muted-foreground); margin-bottom: 32px; }
.error-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero .container, .about-teaser .container, .booking .container,
  .mission .container, .service-row, .contact-grid { grid-template-columns: 1fr; }
  .service-row.reverse .service-row-media { order: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-row .container { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-row .container { grid-template-columns: 1fr 1fr; }
  .static-reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .call-now .call-number { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row .container { grid-template-columns: 1fr 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-credit { text-align: left; }
  .chat-panel { width: calc(100vw - 40px); right: -8px; }
  .page-banner { padding: 56px 0; }
  .page-banner h1 { font-size: 2rem; }
}
