@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink:        #14161A;   /* near-black primary text/zemin */
  --ink-2:      #20242B;   /* dark surface cards */
  --steel:      #3A4049;   /* steel gray borders */
  --concrete:   #C9CCD1;   /* concrete gray borders */
  --paper:      #F4F4F2;   /* off-white site zemin */
  --paper-2:    #FFFFFF;   /* pure white card zemin */
  --safety:     #F5A300;   /* safety yellow-amber action buttons */
  --safety-2:   #FFB933;   /* safety hover state */
  --alert:      #E5532E;   /* alert red (emergency) */
  --line:       #E3E3E0;   /* thin separator lines */
  --ok:         #2E7D49;   /* success green */
  --font-title: 'Archivo', sans-serif;
  --font-body:  'Inter', sans-serif;
  --radius:     2px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* 2. Brand Patterns & Accents */
.hazard-strip {
  background: repeating-linear-gradient(
    45deg,
    var(--safety),
    var(--safety) 12px,
    var(--ink) 12px,
    var(--ink) 24px
  );
  height: 8px;
  width: 100%;
  border-bottom: 2px solid var(--ink);
}

.diagonal-cut-top {
  position: relative;
}
.diagonal-cut-top::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 17px;
  background-color: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* 3. Header Navigation Styles */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--safety);
  transition: var(--transition);
}
.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-title {
  font-size: 1.4rem;
  color: var(--paper);
}
.logo-title span {
  color: var(--safety);
}
.logo-sub {
  font-size: 0.75rem;
  color: var(--concrete);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -4px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--concrete);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--safety);
}
.header-cta-btn {
  background-color: var(--safety);
  color: var(--ink);
  padding: 10px 20px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-cta-btn:hover {
  background-color: var(--safety-2);
  transform: translateY(-1px);
}

/* Burger Mobile Button */
.burger-menu {
  display: none;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}
.burger-menu span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--paper);
  position: absolute;
  left: 10px;
  transition: var(--transition);
}
.burger-menu span:nth-child(1) { top: 14px; }
.burger-menu span:nth-child(2) { top: 20px; }
.burger-menu span:nth-child(3) { top: 26px; }

.burger-menu[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.burger-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger-menu[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

@media (max-width: 991px) {
  .desktop-nav, .header-cta-btn { display: none; }
  .burger-menu { display: block; }
}

/* Mobile Nav Drawer Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--ink);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 20px;
  border-top: 1px solid var(--steel);
  overflow-y: auto;
}
.mobile-nav-drawer.active {
  transform: translateX(0);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.mobile-menu-links a {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--paper);
  text-transform: uppercase;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  color: var(--safety);
}
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 4. Core Typography Components */
.section-header {
  margin-bottom: 48px;
  position: relative;
  max-width: 700px;
}
.section-tag {
  color: var(--safety);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--steel);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background-color: var(--safety);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-primary:hover {
  background-color: var(--safety-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 163, 0, 0.25);
}
.btn-secondary {
  background-color: var(--ink);
  color: var(--paper);
  border-color: var(--steel);
}
.btn-secondary:hover {
  background-color: var(--ink-2);
  border-color: var(--safety);
  transform: translateY(-2px);
}
.btn-alert {
  background-color: var(--alert);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-alert:hover {
  background-color: #ff653f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 83, 46, 0.25);
}

/* Quick Answer Block (AEO Module) */
.quick-answer {
  background-color: var(--ink);
  color: var(--paper);
  padding: 24px 30px;
  border-left: 6px solid var(--safety);
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.quick-answer-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--safety);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.quick-answer-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* 5. Home Page Spec Details */
/* Hero Section */
.hero-section {
  background-color: var(--ink);
  color: var(--paper);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--steel);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: var(--paper);
  margin-bottom: 24px;
}
.hero-content h1 span {
  color: var(--safety);
  display: block;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--concrete);
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badge-overlay {
  position: relative;
  border: 4px solid var(--steel);
  background-color: var(--ink-2);
  padding: 40px;
  border-radius: var(--radius);
}
.hero-badge-overlay::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed var(--safety);
  pointer-events: none;
}
.hero-badge-title {
  font-size: 1.8rem;
  color: var(--safety);
  margin-bottom: 12px;
}
.hero-badge-list {
  list-style: none;
}
.hero-badge-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.hero-badge-list li::before {
  content: '✓';
  color: var(--safety);
  font-weight: 900;
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.8rem; }
}

/* Trust Badges Strip */
.trust-strip {
  background-color: var(--ink-2);
  border-bottom: 1px solid var(--steel);
  color: var(--paper);
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-card {
  padding: 10px;
}
.trust-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--safety);
  display: block;
}
.trust-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--concrete);
  font-weight: 600;
}

@media (max-width: 767px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Service Card Components */
.services-section {
  padding: 100px 0;
  background-color: var(--paper);
}
.service-card {
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--safety);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--steel);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.service-card:hover::after {
  width: 100%;
}
.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
  border-right: 3px solid var(--safety);
}
.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card-desc {
  font-size: 0.95rem;
  color: var(--steel);
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-card-link {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link span {
  color: var(--safety);
  transition: var(--transition);
}
.service-card:hover .service-card-link span {
  transform: translateX(4px);
}

/* Process Steps Component */
.process-section {
  padding: 100px 0;
  background-color: var(--ink);
  color: var(--paper);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-step {
  position: relative;
}
.process-step-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: var(--steel);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  color: var(--safety);
}
.process-step-title {
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: 8px;
}
.process-step-desc {
  font-size: 0.9rem;
  color: var(--concrete);
}

@media (max-width: 991px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* District Grid Component */
.districts-section {
  padding: 100px 0;
  background-color: var(--paper);
  border-top: 1px solid var(--line);
}
.districts-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.district-link {
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
}
.district-link:hover {
  background-color: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .districts-grid-wrapper { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .districts-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .districts-grid-wrapper { grid-template-columns: 1fr; }
}

/* Accordion FAQ Component */
.faq-section {
  padding: 100px 0;
  background-color: var(--paper-2);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--safety);
  transition: var(--transition);
}
.faq-trigger[aria-expanded="true"]::after {
  content: '−';
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}
.faq-content-inner {
  padding: 12px 0 24px 0;
  color: var(--steel);
  font-size: 1rem;
}

/* CTA Block Separator Band */
.cta-band {
  background-color: var(--safety);
  color: var(--ink);
  padding: 60px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-band-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-band-title {
  font-size: 2.2rem;
  color: var(--ink);
}
.cta-band-title span {
  display: block;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--steel);
}
.cta-band-actions {
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .cta-band-wrapper { flex-direction: column; text-align: center; }
  .cta-band-title { font-size: 1.8rem; }
  .cta-band-actions { flex-direction: column; width: 100%; }
}

/* 6. Dynamic Templates Elements */
/* Breadcrumbs */
.breadcrumb-nav {
  padding: 16px 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--steel);
  background-color: var(--paper);
  border-bottom: 1px solid var(--line);
}
.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-separator {
  color: var(--concrete);
}
.breadcrumb-active {
  color: var(--ink);
  font-weight: 600;
}

/* Internal Pillars details */
.pillar-detail-layout {
  padding: 80px 0;
  background-color: var(--paper-2);
}
.pillar-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.pillar-main-content h2 {
  font-size: 1.8rem;
  margin: 32px 0 16px 0;
}
.pillar-main-content p {
  margin-bottom: 24px;
  color: var(--steel);
}
.pillar-main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.95rem;
}
.pillar-main-content th {
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-title);
  font-weight: 800;
  text-align: left;
  padding: 12px 16px;
}
.pillar-main-content td {
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
}
.pillar-main-content tr:nth-child(even) td {
  background-color: var(--paper);
}

/* Sidebar Elements */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-box {
  background-color: var(--paper);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
}
.sidebar-box-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--safety);
  padding-bottom: 8px;
}
.sidebar-links {
  list-style: none;
}
.sidebar-links li {
  margin-bottom: 12px;
}
.sidebar-links a {
  font-weight: 600;
  color: var(--steel);
}
.sidebar-links a:hover, .sidebar-links a.active {
  color: var(--safety);
}
.sidebar-cta-box {
  background-color: var(--ink);
  color: var(--paper);
  padding: 40px 30px;
  border-top: 6px solid var(--safety);
  border-radius: var(--radius);
}
.sidebar-cta-title {
  font-size: 1.5rem;
  color: var(--paper);
  margin-bottom: 12px;
}
.sidebar-cta-text {
  font-size: 0.9rem;
  color: var(--concrete);
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* Contact page structures */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
.contact-form-box {
  background-color: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  background-color: var(--paper-2);
  border: 1px solid var(--concrete);
  padding: 12px 16px;
  color: var(--ink);
  border-radius: var(--radius);
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--safety);
  box-shadow: 0 0 0 3px rgba(245,163,0,0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--safety);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid var(--ink);
}
.contact-info-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.contact-info-text {
  color: var(--steel);
}

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
}

/* 7. Blog Layouts */
.blog-card {
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--steel);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  background-color: var(--ink-2);
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--steel);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card-desc {
  font-size: 0.95rem;
  color: var(--steel);
  margin-bottom: 16px;
  flex-grow: 1;
}

/* 8. Footer Design */
.main-footer {
  background-color: var(--ink);
  color: var(--paper);
  padding: 80px 0 100px 0;
  border-top: 6px solid var(--safety);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-title {
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--safety);
}
.footer-about p {
  color: var(--concrete);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer-links-list {
  list-style: none;
}
.footer-links-list li {
  margin-bottom: 10px;
}
.footer-links-list a {
  color: var(--concrete);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links-list a::before {
  content: '—';
  color: var(--steel);
}
.footer-links-list a:hover {
  color: var(--safety);
}
.footer-contact-list {
  list-style: none;
}
.footer-contact-list li {
  margin-bottom: 16px;
  color: var(--concrete);
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
}
.footer-contact-list li strong {
  color: var(--paper);
  display: block;
}
.footer-bottom {
  border-top: 1px solid var(--steel);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--concrete);
}

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* 9. Mobile Sticky CTA bar (Emergency Support Action) */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  height: 64px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  grid-template-columns: 1fr 1fr;
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  height: 100%;
}
.mobile-sticky-btn.call-btn {
  background-color: var(--safety);
  color: var(--ink);
  border-top: 2px solid var(--ink);
}
.mobile-sticky-btn.wa-btn {
  background-color: #25D366; /* WhatsApp Green */
  color: #fff;
  border-top: 2px solid #128C7E;
}

@media (max-width: 767px) {
  .mobile-sticky-cta { display: grid; }
  body { padding-bottom: 64px; } /* Prevent bottom overlap on mobile screen */
}
