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

html, body { max-width: 100%; overflow-x: hidden; }
svg { max-width: 100%; }

:root {
  --navy:        #1a3a5c;
  --navy-dark:   #0f2440;
  --blue:        #2e7bc4;
  --blue-dark:   #1f5fa0;
  --blue-light:  #e8f2fb;
  --gray-light:  #f4f6f8;
  --gray-mid:    #6b7280;
  --gray-dark:   #374151;
  --text:        #1f2937;
  --white:       #ffffff;
  --border:      #e5e7eb;
  --shadow:      0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover:0 6px 24px rgba(0,0,0,0.14);
  --radius:      6px;
  --font:        system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container:   1180px;
}

body { font-family: var(--font); color: var(--text); line-height: 1.6; font-size: 16px; }
img  { max-width: 100%; display: block; }
a    { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -48px;
  z-index: 1000;
  background: var(--navy-dark);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.75rem;
  color: var(--white);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary       { background: var(--blue);  color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); }
.btn-outline-white       { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy        { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover  { background: var(--navy);  color: var(--white); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ── TOP BAR ── */
.top-bar { background: var(--navy-dark); color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 0.45rem 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.top-bar-left  { display: flex; align-items: center; gap: 0.5rem; }
.top-bar-right { display: flex; align-items: center; gap: 1.5rem; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--white); }
.top-bar-phone { display: flex; align-items: center; gap: 0.35rem; font-weight: 500; }
.top-bar-phone strong { color: var(--white); }
.top-bar-divider { color: rgba(255,255,255,0.3); }

/* ── HEADER ── */
.site-header { background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: var(--container); margin: 0 auto; gap: 2rem;
}
.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: auto;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
}
.logo-mark img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
.logo-text { line-height: 1.12; }
.logo-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.logo-text span {
  display: block;
  font-size: 1.1rem;
  color: var(--gray-mid);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Nav */
.primary-nav { display: flex; align-items: center; gap: 0.25rem; }
.primary-nav > ul { list-style: none; display: flex; align-items: center; gap: 0.1rem; }
.primary-nav a {
  display: block; padding: 0.5rem 0.75rem; color: var(--gray-dark);
  font-size: 0.9rem; font-weight: 500; border-radius: var(--radius);
  transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--blue); background: var(--blue-light); }
.nav-cta { margin-left: 0.75rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.dropdown-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--gray-dark);
  border-radius: var(--radius);
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dropdown-toggle:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.has-dropdown:hover > .dropdown-trigger > .dropdown-toggle,
.has-dropdown:focus-within > .dropdown-trigger > .dropdown-toggle,
.has-dropdown.is-section-active > .dropdown-trigger > .dropdown-toggle,
.has-dropdown.is-section-active > .dropdown-trigger > a {
  color: var(--blue);
}
.has-dropdown.is-section-active > .dropdown-trigger > a {
  background: var(--blue-light);
}
.dropdown {
  display: block;
  position: absolute; top: calc(100% + 0.5rem); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s; z-index: 200;
}
.dropdown li { border-bottom: 1px solid var(--border); }
.dropdown li:last-child { border-bottom: none; }
.dropdown a { padding: 0.65rem 1rem; font-size: 0.88rem; border-radius: 0; white-space: normal; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; flex-direction: column; gap: 5px;
}
.hamburger-bar {
  display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e4d7b 100%);
  color: var(--white); padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.hero-content--left {
  margin-inline: 0;
  text-align: left;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.2;
  margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.hero h1 span { color: #7ec8f8; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 auto 2rem;
  max-width: 620px;
  line-height: 1.7;
}
.hero-content--left .hero-sub {
  margin: 0 0 2rem;
}
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-content--left .hero-actions { justify-content: flex-start; }

/* ── INNER HERO ── */
.inner-hero {
  background: linear-gradient(120deg, #133355 0%, #1f5fa0 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
}
.inner-hero .inner-hero-content {
  margin-inline: auto;
  text-align: left;
}
.inner-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.inner-hero p {
  color: rgba(255,255,255,0.86);
  font-size: 1.05rem;
  max-width: 680px;
  margin-inline: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb [aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}

/* ── SECTION BASICS ── */
.section {
  padding: 4rem 0;
}
.section--gray { background: var(--gray-light); }
.section h2 {
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-intro {
  color: var(--gray-mid);
  margin-bottom: 2rem;
  max-width: 780px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.info-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.info-card p,
.info-card li {
  color: var(--gray-dark);
  font-size: 0.94rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  position: relative;
  padding-left: 1.45rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.stat-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.1;
}
.stat-item span {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* ── SERVICE LINE SECTIONS ── */
.service-line { padding: 5rem 0; }
.service-line--janitorial { background: var(--white); }
.service-line--facility   { background: var(--gray-light); }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 0.85rem;
}
.service-line--janitorial .section-label { background: var(--blue-light); color: var(--blue); }
.service-line--facility   .section-label { background: #e8f0f7;          color: var(--navy); }

.service-line-header { margin-bottom: 3rem; }
.service-line-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy);
  margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1.2;
}
.service-line-header p { font-size: 1.05rem; color: var(--gray-mid); line-height: 1.7; }

.service-line-layout { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }

/* Service Cards Grid */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem; font-size: 1.25rem;
}
.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-line--janitorial .card-icon,
.service-page .card-icon { background: var(--blue-light); color: var(--blue); }
.service-line--facility .card-icon { background: #e8f0f7; color: var(--navy); }
.service-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.service-card p  { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.5; }

/* Sidebar */
.feature-list {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.5rem;
}
.feature-list h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.feature-list ul  { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li  { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--gray-dark); line-height: 1.4; }
.feature-list li::before {
  content: '✓'; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: white; margin-top: 1px;
  background: var(--blue);
}

.service-cta-box { border-radius: var(--radius); padding: 1.75rem; text-align: center; background: var(--navy); color: var(--white); }
.service-cta-box strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; line-height: 1.5; }

.section-divider { border: none; height: 1px; background: var(--border); margin: 0; }

/* ── CONTACT FORM (WEB3FORMS) ── */
.absfs-section {
  background: var(--gray-light);
  padding-top: 1.5rem;
}

.absfs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.absfs-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.absfs-form {
  display: grid;
  gap: 1rem;
}

.absfs-row {
  display: grid;
  gap: 1rem;
}

.absfs-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.absfs-field label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.absfs-field label span,
.absfs-disclaimer span {
  color: #c62828;
}

.absfs-field input,
.absfs-field select,
.absfs-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
}

.absfs-field textarea {
  resize: vertical;
  min-height: 140px;
}

.absfs-field input:focus,
.absfs-field select:focus,
.absfs-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 123, 196, 0.16);
}

.absfs-disclaimer {
  margin-top: -0.2rem;
  color: var(--gray-mid);
  font-size: 0.84rem;
  line-height: 1.5;
}

.absfs-form .h-captcha {
  min-height: 78px;
}

.absfs-form-message {
  min-height: 1.35rem;
  margin-top: -0.25rem;
  font-size: 0.86rem;
  color: var(--gray-mid);
}

.absfs-form-message.is-error {
  color: #b91c1c;
}

.absfs-submit {
  justify-self: start;
}

.absfs-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.absfs-success {
  margin-top: 1rem;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #14532d;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.absfs-success h3 {
  margin-bottom: 0.2rem;
  color: #166534;
}

.absfs-side {
  display: grid;
  gap: 1rem;
}

/* ── CTA STRIP ── */
.cta-strip { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: var(--white); padding: 4rem 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-strip p  { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.cta-strip-actions { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-strip-phones  { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.cta-phone { display: flex; flex-direction: column; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.cta-phone a { color: var(--white); font-weight: 700; font-size: 1.1rem; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-wrap {
  display: inline-flex; align-items: center;
  margin-bottom: 1rem; text-decoration: none;
}
.footer-logo-text strong { display: block; font-size: 0.95rem; color: var(--white); font-weight: 700; }
.footer-logo-text span   { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  transition: background 0.15s, color 0.15s; text-decoration: none;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }

.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

.footer-contact-item { display: flex; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.65rem; line-height: 1.4; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--white); }

.service-areas-list { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.8; }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4); gap: 1rem; flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-line-layout,
  .split-layout { grid-template-columns: 1fr; }
  .absfs-layout { grid-template-columns: 1fr; }
  .service-line-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .primary-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 1rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav > ul { flex-direction: column; gap: 0.1rem; }
  .primary-nav a  { padding: 0.65rem 0.75rem; }
  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-toggle {
    display: inline-flex;
  }
  .dropdown {
    display: none;
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 3px solid var(--blue-light);
    border-radius: 0; margin-left: 0.75rem; margin-top: 0.25rem;
  }
  .dropdown.is-open { display: block; }
  .dropdown li { border-bottom: none; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .header-inner {
    position: relative;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .logo-mark { height: 44px; }
  .logo-text strong { font-size: 0.95rem; }
  .logo-text span { font-size: 0.8rem; }

  .hero,
  .inner-hero { padding: 3rem 0 2.5rem; }

  .service-cards,
  .card-grid { grid-template-columns: 1fr 1fr; }
  .absfs-row--two { grid-template-columns: 1fr; }
  .absfs-submit { width: 100%; justify-content: center; }
  .service-line,
  .section { padding: 3.5rem 0; }
  .service-line-sidebar { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .service-cards,
  .card-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
