/*
Theme Name: Steady IT
Theme URI: /themes/steadyit/
Author: Steady IT
Author URI:
Description: Fresh, modern theme for Steady IT.
Version: 1.0.0
Text Domain: steadyit
*/

:root {
  --steady-primary: #bb2020;
  --steady-primary-dark: #8a1515;
  --steady-accent: #ff6c22;
  --steady-ink: #161616;
  --steady-muted: #6b6b6b;
  --steady-light: #f2f2f2;
  --steady-border: #e1e1e1;
  --steady-surface: #ffffff;
  --steady-shadow: 0 18px 40px rgba(22, 22, 22, 0.12);
  --steady-radius: 18px;
  --steady-transition: 200ms ease;
  font-size: 16px;
}

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

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--steady-ink);
  background: var(--steady-light);
  line-height: 1.6;
}

body.admin-bar {
  margin-top: 32px !important;
}

body.admin-bar .site-chrome {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    margin-top: 46px !important;
  }

  body.admin-bar .site-chrome {
    top: 46px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

.site-chrome {
  position: static;
  z-index: 90;
}

.topbar {
  background: linear-gradient(120deg, var(--steady-primary), var(--steady-primary-dark));
  color: #ffffff;
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
  flex-wrap: wrap;
}

.topbar-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-pill-flag {
  width: 16px;
  height: auto;
  border-radius: 2px;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
}

.topbar-phone-icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  flex-shrink: 0;
}

.topbar-pill {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  background: var(--steady-surface);
  border-bottom: 1px solid var(--steady-border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.logo-image {
  width: 260px;
  height: 104px;
  max-width: 100%;
  object-fit: contain;
}

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--steady-border);
  background: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--steady-transition);
  z-index: 80;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.primary-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 360px);
  height: 100%;
  background: #ffffff;
  padding: 2rem;
  transform: translateX(110%);
  transition: transform 260ms ease;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.primary-nav.is-open {
  transform: translateX(0);
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.primary-menu > li {
  border-bottom: 1px solid var(--steady-border);
  padding-bottom: 0.75rem;
}

.nav-link,
.primary-menu a,
.primary-menu button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--steady-ink);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-link:hover,
.primary-menu a:hover,
.primary-menu button:hover {
  color: var(--steady-primary);
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  padding: 0.75rem 0 0.25rem;
  margin: 0;
  display: none;
  gap: 0.4rem;
  flex-direction: column;
}

.dropdown-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--steady-muted);
}

.dropdown-menu a:hover {
  color: var(--steady-primary);
}

.has-dropdown.dropdown-open > .dropdown-menu {
  display: flex;
}

.dropdown-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-backdrop {
    display: none;
  }

  .primary-nav {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    margin-left: auto;
  }

  .primary-menu {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .primary-menu > li {
    border-bottom: none;
    padding-bottom: 0;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: var(--steady-shadow);
    border: 1px solid var(--steady-border);
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  }

  .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.75rem;
    height: 0.75rem;
  }

  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

.site-main {
  padding: 0;
}

.steadyit-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--steady-primary), var(--steady-accent));
  border-radius: 0;
  padding: 3.5rem 2.5rem 4rem;
  color: #ffffff;
  box-shadow: var(--steady-shadow);
}

.steadyit-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h120v120H0z' fill='none'/%3E%3Cpath d='M0 0h120M0 30h120M0 60h120M0 90h120M0 120h120M0 0v120M30 0v120M60 0v120M90 0v120M120 0v120' stroke='rgba(255,255,255,0.28)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}

.steadyit-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.steadyit-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 auto;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steadyit-hero-flag {
  width: 22px;
  height: auto;
  border-radius: 4px;
}

.steadyit-hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  display: grid;
  gap: 0.5rem;
}

.steadyit-hero-subcopy {
  margin: 0;
  color: rgba(242, 242, 242, 0.95);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.steadyit-hero-copy {
  margin: 0 auto;
  max-width: 780px;
  font-size: 1.05rem;
  color: rgba(242, 242, 242, 0.9);
}

.steadyit-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.steadyit-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--steady-transition), box-shadow var(--steady-transition);
  border: 1px solid transparent;
}

.steadyit-hero-btn.primary {
  background: #ffffff;
  color: var(--steady-primary);
  box-shadow: 0 16px 24px rgba(22, 22, 22, 0.18);
}

.steadyit-hero-btn.secondary {
  background: #ffffff;
  color: var(--steady-primary);
  border-color: rgba(255, 255, 255, 0.75);
}

.steadyit-hero-btn.tertiary {
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
}

.steadyit-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(22, 22, 22, 0.22);
}

.steadyit-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.steadyit-hero-pill {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .steadyit-hero {
    padding: 3rem 1.5rem 3.5rem;
  }

  .steadyit-hero-actions {
    flex-direction: column;
  }
}

.steadyit-services {
  padding: 3.5rem 0 1rem;
}

.steadyit-services-overlap {
  position: relative;
  z-index: 10;
  margin-top: -1.5rem;
  padding-top: 0;
}

.steadyit-services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  transform: translateY(0);
}

.steadyit-service-card {
  display: block;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
  transition: transform var(--steady-transition), box-shadow var(--steady-transition), border-color var(--steady-transition);
}

.steadyit-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.steadyit-service-icon svg {
  width: 24px;
  height: 24px;
}

.steadyit-service-icon.is-red {
  background: rgba(187, 32, 32, 0.12);
}

.steadyit-service-icon.is-red svg {
  fill: #bb2020;
}

.steadyit-service-icon.is-orange {
  background: rgba(255, 108, 34, 0.16);
}

.steadyit-service-icon.is-orange svg {
  fill: #ff6c22;
}

.steadyit-service-card h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: 1.15rem;
  font-weight: 600;
}

.steadyit-service-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(187, 32, 32, 0.25);
  box-shadow: 0 20px 34px rgba(22, 22, 22, 0.12);
}

.steadyit-seo {
  padding: 3.5rem 0;
}

.steadyit-seo-inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.steadyit-seo-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--steady-ink);
}

.steadyit-seo-content p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.steadyit-seo-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--steady-muted);
}

.steadyit-seo-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.steadyit-seo-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--steady-accent);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.steadyit-seo-image {
  width: 100%;
  min-height: 380px;
  height: auto;
  border-radius: 22px;
  background-color: #bb2020;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(22, 22, 22, 0.16);
}

@media (min-width: 992px) {
  .steadyit-seo-image {
    position: sticky;
    top: 120px;
  }
}

.steadyit-seo-image::before,
.steadyit-seo-image::after {
  content: none;
}

@media (min-width: 992px) {
  .steadyit-seo-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.steadyit-why {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.steadyit-why-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.steadyit-why-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--steady-ink);
}

.steadyit-why-heading p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steadyit-why-card {
  background: var(--steady-light);
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 14px 26px rgba(22, 22, 22, 0.08);
}

.steadyit-why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(187, 32, 32, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.steadyit-why-icon svg {
  width: 24px;
  height: 24px;
  fill: #bb2020;
}

.steadyit-why-icon.is-orange {
  background: rgba(255, 108, 34, 0.16);
}

.steadyit-why-icon.is-orange svg {
  fill: #ff6c22;
}

.steadyit-why-card h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: 1.15rem;
  font-weight: 600;
}

.steadyit-why-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-industries {
  padding: 3.5rem 0 4rem;
  background: var(--steady-light);
}

.steadyit-industries-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.steadyit-industries-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--steady-ink);
}

.steadyit-industries-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-industries-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steadyit-industry-card {
  display: block;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 14px 26px rgba(22, 22, 22, 0.08);
  transition: transform var(--steady-transition), box-shadow var(--steady-transition), border-color var(--steady-transition);
}

.steadyit-industry-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(187, 32, 32, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.steadyit-industry-icon svg {
  width: 24px;
  height: 24px;
  fill: #bb2020;
}

.steadyit-industry-icon.is-orange {
  background: rgba(255, 108, 34, 0.16);
}

.steadyit-industry-icon.is-orange svg {
  fill: #ff6c22;
}

.steadyit-industry-card h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: 1.15rem;
  font-weight: 600;
}

.steadyit-industry-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(187, 32, 32, 0.25);
  box-shadow: 0 20px 34px rgba(22, 22, 22, 0.12);
}

.steadyit-contact {
  padding: 3.5rem 0;
  background: #ffffff;
}

.steadyit-contact--alt {
  background: var(--steady-light);
}

.steadyit-contact-inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.steadyit-contact-content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--steady-ink);
}

.steadyit-contact-content p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--steady-muted);
}

.steadyit-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.steadyit-contact-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--steady-primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.steadyit-contact-methods {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.steadyit-contact-method {
  background: var(--steady-light);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 12px 24px rgba(22, 22, 22, 0.06);
}

.steadyit-contact-method h3 {
  margin: 0 0 0.5rem;
  color: var(--steady-ink);
  font-size: 1.1rem;
}

.steadyit-contact-method p {
  margin: 0 0 0.75rem;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-contact-method a {
  display: inline-flex;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--steady-primary);
}

.steadyit-contact-method span {
  display: block;
  color: var(--steady-muted);
  font-size: 0.9rem;
}

.steadyit-location {
  padding: 3.5rem 0 4rem;
  background: var(--steady-light);
}

.steadyit-location-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.steadyit-location-heading h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-location-heading p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-location-note {
  font-weight: 600;
  color: var(--steady-accent);
}

.steadyit-location-grid {
  display: grid;
  gap: 2rem;
}

.steadyit-location-card {
  background: var(--steady-surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--steady-border);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-location-card-media {
  position: relative;
  height: 190px;
}

.steadyit-location-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.steadyit-location-card-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--steady-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.steadyit-location-card-body {
  padding: 1.5rem;
}

.steadyit-location-card-body h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: 1.2rem;
}

.steadyit-location-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--steady-muted);
  margin-bottom: 1rem;
}

.steadyit-location-row svg {
  width: 20px;
  height: 20px;
  color: #6b6b6b;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.steadyit-location-row address,
.steadyit-location-row p,
.steadyit-location-row a {
  font-style: normal;
  margin: 0;
  color: var(--steady-muted);
}

.steadyit-location-row span {
  color: var(--steady-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.steadyit-location-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2d6adf;
  font-weight: 600;
}

.steadyit-location-actions svg {
  width: 18px;
  height: 18px;
}

.steadyit-location-map {
  background: var(--steady-surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--steady-border);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
  min-height: 380px;
}

.steadyit-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 380px;
}

@media (min-width: 900px) {
  .steadyit-location-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.steadyit-404-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
  background: linear-gradient(120deg, var(--steady-primary), var(--steady-primary-dark));
  color: #fff;
}

.steadyit-404-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
}

.steadyit-404-hero-inner {
  position: relative;
  text-align: center;
}

.steadyit-404-eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.steadyit-404-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.steadyit-404-hero p {
  margin: 0 auto 1.75rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.steadyit-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.steadyit-404-btn {
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.steadyit-404-btn.primary {
  background: #fff;
  color: var(--steady-primary-dark);
}

.steadyit-404-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.steadyit-404-links {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.steadyit-404-links-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.steadyit-404-links-heading h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-404-links-heading p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-404-links-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steadyit-404-link-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--steady-border);
  box-shadow: 0 18px 30px rgba(22, 22, 22, 0.08);
  transition: transform var(--steady-transition), box-shadow var(--steady-transition);
}

.steadyit-404-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(22, 22, 22, 0.12);
}

.steadyit-404-link-card h3 {
  margin: 0 0 0.5rem;
  color: var(--steady-ink);
  font-size: 1.15rem;
}

.steadyit-404-link-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-404-link-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.steadyit-404-link-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.steadyit-404-link-icon.is-primary {
  background: rgba(187, 32, 32, 0.12);
  color: var(--steady-primary);
}

.steadyit-404-link-icon.is-accent {
  background: rgba(255, 108, 34, 0.14);
  color: var(--steady-accent);
}

.steadyit-404-link-icon.is-gold {
  background: rgba(242, 190, 71, 0.18);
  color: #f2be47;
}

.steadyit-managed-it-section {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.steadyit-managed-it-inner {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

.steadyit-managed-it-copy {
  max-width: 100%;
}

.steadyit-managed-it-media img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  min-height: 320px;
}

.steadyit-consultancy-section .steadyit-managed-it-media img {
  max-width: 380px;
  min-height: 240px;
  margin: 0 auto;
}

.steadyit-accounting-why-section .steadyit-managed-it-media img {
  max-width: 380px;
  min-height: 240px;
  margin: 0 auto;
}

.steadyit-realestate-why-section .steadyit-managed-it-media img {
  max-width: 380px;
  min-height: 240px;
  margin: 0 auto;
}

.steadyit-managed-it-section--reverse .steadyit-managed-it-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

@media (min-width: 900px) {
  .steadyit-managed-it-inner {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}
.steadyit-managed-it-inner h2 {
  margin: 0 0 1rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-managed-it-inner p {
  margin: 0 0 1.5rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-managed-it-expect h3 {
  margin: 0 0 1rem;
  color: var(--steady-ink);
  font-size: 1.1rem;
}

.steadyit-managed-it-why {
  padding: 3.5rem 0 4rem;
  background: var(--steady-light);
}

.steadyit-managed-it-why-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.steadyit-managed-it-why-heading h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-managed-it-why-heading p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-managed-it-why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steadyit-managed-it-why-card {
  background: var(--steady-surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--steady-border);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-managed-it-why-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(187, 32, 32, 0.12);
  color: var(--steady-primary);
  margin-bottom: 1rem;
}

.steadyit-managed-it-why-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.steadyit-managed-it-why-icon.is-orange {
  background: rgba(255, 108, 34, 0.16);
  color: var(--steady-accent);
}

.steadyit-managed-it-why-card h3 {
  margin: 0 0 0.6rem;
  color: var(--steady-ink);
  font-size: 1.1rem;
}

.steadyit-managed-it-why-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-managed-it-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.steadyit-managed-it-process {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.steadyit-managed-it-process-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.steadyit-managed-it-process-heading h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-managed-it-process-heading p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-managed-it-process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steadyit-managed-it-process-card {
  background: var(--steady-light);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-managed-it-process-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(187, 32, 32, 0.12);
  color: var(--steady-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.steadyit-managed-it-process-card h3 {
  margin: 0 0 0.5rem;
  color: var(--steady-ink);
  font-size: 1.05rem;
}

.steadyit-managed-it-process-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-managed-it-faq {
  padding: 3.5rem 0 4rem;
  background: var(--steady-light);
}

.steadyit-managed-it-faq--white {
  background: #fff;
}

.steadyit-managed-it-faq-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.steadyit-managed-it-faq-heading h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-managed-it-faq-heading p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-managed-it-faq-intro {
  max-width: 900px;
  margin: 0 auto 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.steadyit-managed-it-faq-intro a {
  color: var(--steady-primary);
  font-weight: 600;
}

.steadyit-managed-it-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.steadyit-managed-it-faq-list details {
  background: var(--steady-surface);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--steady-border);
  box-shadow: 0 12px 22px rgba(22, 22, 22, 0.08);
}

.steadyit-managed-it-faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--steady-ink);
  list-style: none;
}

.steadyit-managed-it-faq-list summary::-webkit-details-marker {
  display: none;
}

.steadyit-managed-it-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--steady-primary);
  font-size: 1.1rem;
}

.steadyit-managed-it-faq-list details[open] summary::after {
  content: "–";
}

.steadyit-managed-it-faq-list p {
  margin: 0.8rem 0 0;
  color: var(--steady-muted);
  line-height: 1.7;
}

.steadyit-managed-it-faq-list a {
  color: var(--steady-primary);
  font-weight: 600;
}

.steadyit-managed-it-faq-list a:hover {
  color: var(--steady-primary-dark);
}

.steadyit-text-divider {
  width: 100%;
  height: 1px;
  background: var(--steady-border);
  margin: 1.25rem auto;
}

.steadyit-events {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.steadyit-events-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steadyit-events-card {
  background: var(--steady-surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--steady-border);
  box-shadow: 0 16px 26px rgba(22, 22, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.steadyit-events-card h3 {
  margin: 0;
  color: var(--steady-ink);
  font-size: 1.1rem;
}

.steadyit-events-card p {
  margin: 0;
  color: var(--steady-muted);
  line-height: 1.6;
}

.steadyit-events-btn {
  align-self: flex-start;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: var(--steady-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.steadyit-events-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.steadyit-events-modal.is-open {
  display: flex;
}

.steadyit-events-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.6);
}

.steadyit-events-modal__panel {
  position: relative;
  background: var(--steady-surface);
  border-radius: 18px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.steadyit-events-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(187, 32, 32, 0.12);
  color: var(--steady-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.steadyit-events-modal__content {
  display: grid;
  gap: 2rem;
}

.steadyit-events-modal__details h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
}

.steadyit-events-form label {
  display: block;
  font-weight: 600;
  color: var(--steady-ink);
  margin-bottom: 0.5rem;
}

.steadyit-events-form input,
.steadyit-events-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  border-radius: 12px;
  border: 1px solid var(--steady-border);
  padding: 0.7rem 0.9rem;
  font-family: inherit;
}

.steadyit-events-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--steady-primary);
  color: #fff;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.75rem;
}

@media (min-width: 900px) {
  .steadyit-events-modal__content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.steadyit-blog-content {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.steadyit-blog-section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.steadyit-blog-section-heading.is-tight {
  margin-top: 2.5rem;
}

.steadyit-blog-section-heading h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-blog-section-heading p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-blog-featured {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 2.5rem;
}

.steadyit-blog-featured-card {
  background: var(--steady-surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--steady-border);
  box-shadow: 0 18px 30px rgba(22, 22, 22, 0.08);
  display: flex;
  flex-direction: column;
}

.steadyit-blog-featured-image img,
.steadyit-blog-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.steadyit-blog-featured-body {
  padding: 1.5rem;
}

.steadyit-blog-featured-meta {
  margin: 0 0 0.75rem;
  color: var(--steady-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.steadyit-blog-featured-badge {
  background: rgba(255, 108, 34, 0.16);
  color: var(--steady-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.steadyit-blog-featured-body h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  color: var(--steady-ink);
}

.steadyit-blog-featured-body h2 a,
.steadyit-blog-card-body h3 a {
  color: inherit;
}

.steadyit-blog-featured-body p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  line-height: 1.6;
}

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

@media (min-width: 640px) {
  .steadyit-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .steadyit-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.steadyit-blog-card {
  background: var(--steady-surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--steady-border);
  box-shadow: 0 16px 26px rgba(22, 22, 22, 0.08);
  display: flex;
  flex-direction: column;
}

.steadyit-blog-card-image img {
  height: 220px;
  object-fit: cover;
}

.steadyit-blog-card-body {
  padding: 1.1rem;
}

.steadyit-blog-card-meta {
  margin: 0 0 0.5rem;
  color: var(--steady-muted);
  font-size: 0.85rem;
}

.steadyit-blog-card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--steady-ink);
}

.steadyit-blog-card-body p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  line-height: 1.6;
}

.steadyit-blog-link {
  color: var(--steady-primary);
  font-weight: 600;
}

.steadyit-blog-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.steadyit-blog-pagination-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steadyit-blog-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--steady-border);
  color: var(--steady-ink);
  background: #fff;
}

.steadyit-blog-pagination-list .is-current .steadyit-blog-page {
  background: var(--steady-primary);
  color: #fff;
  border-color: var(--steady-primary);
}

.steadyit-blog-empty {
  margin-top: 2rem;
  text-align: center;
  color: var(--steady-muted);
}

.steadyit-article-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(120deg, var(--steady-primary), var(--steady-primary-dark));
  color: #fff;
}

.steadyit-article-hero .steadyit-story-hero-pattern {
  opacity: 0.3;
}

.steadyit-article-hero-inner {
  text-align: center;
  position: relative;
}

.steadyit-article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.steadyit-article-category {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #fff;
}

.steadyit-article-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.steadyit-article-excerpt {
  margin: 0 auto 1.5rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.steadyit-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.steadyit-article-meta a {
  color: #fff;
  text-decoration: underline;
}

.steadyit-article-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  align-self: center;
}

.steadyit-article-body {
  padding: 3.5rem 0;
  background: #fff;
}

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

.steadyit-article-image {
  margin-bottom: 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--steady-border);
  box-shadow: 0 18px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-article-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.steadyit-article-tags span {
  background: var(--steady-light);
  color: var(--steady-muted);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.steadyit-article-aside {
  display: grid;
  gap: 1.5rem;
}

.steadyit-article-card {
  background: var(--steady-light);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--steady-border);
}

.steadyit-article-card.is-white {
  background: #fff;
  box-shadow: 0 16px 26px rgba(22, 22, 22, 0.08);
}

.steadyit-article-card h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: 1.1rem;
}

.steadyit-article-card p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  line-height: 1.6;
}

.steadyit-article-link {
  color: var(--steady-primary);
  font-weight: 600;
}

.steadyit-article-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.steadyit-article-category-list a {
  border: 1px solid var(--steady-border);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steady-ink);
}

.steadyit-related-articles {
  padding: 3.5rem 0 4rem;
  background: var(--steady-light);
}

.steadyit-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.steadyit-related-header h2 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--steady-ink);
}

.steadyit-related-header a {
  color: var(--steady-primary);
  font-weight: 600;
}

.steadyit-related-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steadyit-related-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--steady-border);
  box-shadow: 0 16px 26px rgba(22, 22, 22, 0.08);
  display: flex;
  flex-direction: column;
}

.steadyit-related-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.steadyit-related-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--steady-light);
  color: var(--steady-muted);
}

.steadyit-related-body {
  padding: 1.25rem;
}

.steadyit-related-meta {
  margin: 0 0 0.5rem;
  color: var(--steady-muted);
  font-size: 0.85rem;
}

.steadyit-related-body h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: 1.05rem;
}

.steadyit-related-body p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .steadyit-article-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  }
  .steadyit-article-aside {
    position: sticky;
    top: 110px;
    align-self: start;
  }
}

.steadyit-cyber-stats {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.steadyit-cyber-stats--alt {
  background: var(--steady-light);
}

.steadyit-cyber-stats-inner {
  max-width: 900px;
  margin: 0 auto;
}

.steadyit-cyber-stats-copy h2 {
  margin: 0 0 1rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: left;
}

.steadyit-cyber-stats-copy p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-cyber-stats .steadyit-contact-list {
  margin-top: 1.25rem;
}

.steadyit-cyber-stats .steadyit-contact-list li {
  justify-content: flex-start;
  text-align: left;
}

.steadyit-cyber-stats-source {
  margin-top: 2rem;
  font-size: 0.95rem;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.steadyit-cyber-stats-source a {
  color: #fff;
  font-weight: 600;
  background: var(--steady-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.steadyit-contact-image {
  margin-top: 1.5rem;
  width: 100%;
  min-height: 380px;
  border-radius: 18px;
  background-color: #bb2020;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(22, 22, 22, 0.12);
}

.steadyit-contact-image::before,
.steadyit-contact-image::after {
  content: none;
}

.steadyit-contact-form {
  background: var(--steady-light);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-contact-form .wpcf7 {
  display: grid;
  gap: 1rem;
}

.steadyit-contact-form label,
.steadyit-contact-form .wpcf7-form-control-wrap {
  display: block;
  font-size: 0.9rem;
  color: var(--steady-ink);
  font-weight: 600;
}

.steadyit-contact-form .wpcf7-form-control-wrap {
  margin-top: 0.4rem;
}

.steadyit-contact-form input,
.steadyit-contact-form textarea,
.steadyit-contact-form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
}

.steadyit-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.steadyit-contact-form .wpcf7-form-control-wrap textarea {
  min-height: 120px;
}

.steadyit-contact-form .wpcf7-submit {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  background: var(--steady-primary);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--steady-transition), box-shadow var(--steady-transition);
  box-shadow: 0 12px 20px rgba(187, 32, 32, 0.25);
  width: fit-content;
}

.steadyit-contact-form .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 26px rgba(187, 32, 32, 0.28);
}

@media (min-width: 992px) {
  .steadyit-contact-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steadyit-contact-form .wpcf7 form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steadyit-contact-form .wpcf7-submit {
    grid-column: 1 / -1;
  }
}
.steadyit-footer-cta {
  margin: 0;
  padding: 2.5rem 0 3rem;
  background: linear-gradient(135deg, var(--steady-primary), var(--steady-accent));
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.site-footer {
  margin-top: 0;
}

.steadyit-footer-cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.steadyit-footer-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #ffffff;
}

.steadyit-footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 740px;
}

.steadyit-footer-cta-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.steadyit-footer-cta-locations span,
.steadyit-footer-cta-locations a {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--steady-transition), background var(--steady-transition), border-color var(--steady-transition);
  text-decoration: none;
}

.steadyit-footer-cta-locations span:hover,
.steadyit-footer-cta-locations a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.steadyit-story-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--steady-primary), var(--steady-accent));
  color: #ffffff;
}

.steadyit-story-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h120v120H0z' fill='none'/%3E%3Cpath d='M0 0h120M0 30h120M0 60h120M0 90h120M0 120h120M0 0v120M30 0v120M60 0v120M90 0v120M120 0v120' stroke='rgba(255,255,255,0.22)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.steadyit-story-hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.steadyit-story-eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.steadyit-story-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  color: #ffffff;
}

.steadyit-story-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
}

.steadyit-story-hero-copy--compact h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.steadyit-story-hero-copy--compact p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 520px;
}

.steadyit-story-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.steadyit-story-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform var(--steady-transition), box-shadow var(--steady-transition);
}

.steadyit-story-hero-btn.primary {
  background: #ffffff;
  color: #bb2020;
  box-shadow: 0 14px 24px rgba(22, 22, 22, 0.2);
}

.steadyit-story-hero-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.steadyit-story-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(22, 22, 22, 0.24);
}

.steadyit-story-hero-media {
  display: flex;
  justify-content: center;
}

.steadyit-story-hero-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
}

.steadyit-story-hero-image--compact {
  width: min(360px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steadyit-careers-culture {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.steadyit-careers-culture-heading {
  max-width: 900px;
  margin-bottom: 2.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.steadyit-careers-culture-heading h2 {
  margin: 0 0 1rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-careers-culture-heading p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.steadyit-careers-values h3 {
  margin: 0 0 1.25rem;
  color: var(--steady-ink);
  font-size: 1.4rem;
  text-align: center;
}

.steadyit-careers-values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steadyit-careers-value-card {
  background: var(--steady-light);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 14px 26px rgba(22, 22, 22, 0.08);
}

.steadyit-careers-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(187, 32, 32, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.steadyit-careers-value-icon svg {
  width: 24px;
  height: 24px;
  fill: #bb2020;
}

.steadyit-careers-value-icon.is-orange {
  background: rgba(255, 108, 34, 0.16);
}

.steadyit-careers-value-icon.is-orange svg {
  fill: #ff6c22;
}

.steadyit-careers-value-card h4 {
  margin: 0 0 0.5rem;
  color: var(--steady-ink);
  font-size: 1.05rem;
}

.steadyit-careers-value-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-careers-openings {
  padding: 3rem 0 3.5rem;
  background: var(--steady-light);
}

.steadyit-careers-openings-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.steadyit-careers-openings-inner h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.steadyit-careers-openings-inner p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-careers-apply-notice {
  margin: 1.5rem auto 0;
  max-width: 720px;
  background: rgba(31, 114, 68, 0.12);
  color: #1f7244;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
}

.steadyit-careers-apply-notice.is-error {
  background: rgba(187, 32, 32, 0.12);
  color: var(--steady-primary);
}

.steadyit-careers-openings-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steadyit-careers-opening {
  background: var(--steady-surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--steady-border);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.steadyit-careers-opening__header h3 {
  margin: 0;
  color: var(--steady-ink);
  font-size: 1.15rem;
}

.steadyit-careers-opening__excerpt {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.steadyit-careers-opening__button {
  align-self: flex-start;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--steady-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--steady-transition), transform var(--steady-transition);
}

.steadyit-careers-opening__button:hover {
  background: var(--steady-primary-dark);
  transform: translateY(-1px);
}

.steadyit-careers-openings-empty {
  margin: 2rem auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--steady-muted);
}

.steadyit-careers-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

body.modal-open {
  overflow: hidden;
}

.steadyit-careers-modal.is-open {
  display: flex;
}

.steadyit-careers-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.6);
}

.steadyit-careers-modal__panel {
  position: relative;
  background: var(--steady-surface);
  border-radius: 18px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.steadyit-careers-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(187, 32, 32, 0.12);
  color: var(--steady-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.steadyit-careers-modal__content {
  display: grid;
  gap: 2rem;
}

.steadyit-careers-modal__details h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
}

.steadyit-careers-modal__details p {
  color: var(--steady-muted);
  line-height: 1.7;
}

.steadyit-careers-apply label {
  display: block;
  font-weight: 600;
  color: var(--steady-ink);
  margin-bottom: 0.5rem;
}

.steadyit-careers-apply input,
.steadyit-careers-apply textarea {
  width: 100%;
  margin-top: 0.4rem;
  border-radius: 12px;
  border: 1px solid var(--steady-border);
  padding: 0.7rem 0.9rem;
  font-family: inherit;
}

.steadyit-careers-apply__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}

.steadyit-careers-apply__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--steady-primary);
  color: #fff;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
}

.steadyit-careers-apply__submit:hover {
  background: var(--steady-primary-dark);
}

@media (min-width: 900px) {
  .steadyit-careers-modal__content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.steadyit-careers-process {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.steadyit-careers-process-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.steadyit-careers-process-heading h2 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-careers-process-heading p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-careers-process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.steadyit-careers-step {
  background: var(--steady-light);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 14px 26px rgba(22, 22, 22, 0.08);
}

.steadyit-careers-step-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(187, 32, 32, 0.12);
  color: #bb2020;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.steadyit-careers-step h3 {
  margin: 0 0 0.5rem;
  color: var(--steady-ink);
  font-size: 0.98rem;
}

.steadyit-careers-step p {
  margin: 0 0 0.75rem;
  color: var(--steady-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .steadyit-careers-process-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.steadyit-careers-step p:last-child {
  margin-bottom: 0;
}

.steadyit-careers-tips {
  margin-top: 3rem;
  background: var(--steady-surface);
  border: 1px solid var(--steady-border);
  border-radius: var(--steady-radius);
  padding: 2rem;
  box-shadow: 0 18px 35px rgba(22, 22, 22, 0.08);
}

.steadyit-careers-tips h3 {
  margin: 0 0 1.5rem;
  color: var(--steady-ink);
  font-size: 1.4rem;
  text-align: center;
}

.steadyit-careers-tips-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steadyit-careers-tip {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.steadyit-careers-tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steadyit-careers-tip-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.steadyit-careers-tip-icon--primary {
  background: rgba(187, 32, 32, 0.14);
  color: var(--steady-primary);
}

.steadyit-careers-tip-icon--accent {
  background: rgba(255, 108, 34, 0.16);
  color: var(--steady-accent);
}

.steadyit-careers-tips-grid h4 {
  margin: 0 0 0.5rem;
  color: var(--steady-ink);
  font-size: 1.05rem;
}

.steadyit-careers-tips-grid p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-partnerships-intro {
  padding: 3.5rem 0 2.5rem;
  background: var(--steady-light);
}

.steadyit-partnerships-intro-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.steadyit-partnerships-intro h2 {
  margin: 0 0 1rem;
  color: var(--steady-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.steadyit-partnerships-intro p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.steadyit-partnerships-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-partnerships-logos {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.steadyit-partnerships-logos-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.steadyit-partnerships-logos-heading h3 {
  margin: 0 0 0.75rem;
  color: var(--steady-ink);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.steadyit-partnerships-logos-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.steadyit-partnerships-logos-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: center;
}

.steadyit-partnerships-logos-grid img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: 0.9;
  transition: opacity var(--steady-transition), filter var(--steady-transition);
}

.steadyit-partnerships-logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (min-width: 992px) {
  .steadyit-partnerships-intro-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.steadyit-story-section {
  padding: 3.5rem 0;
  background: #ffffff;
}

.steadyit-story-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.steadyit-story-aside {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .steadyit-story-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.steadyit-story-section h2 {
  margin: 0 0 1rem;
  color: var(--steady-ink);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.steadyit-story-section p {
  margin: 0 0 1rem;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.steadyit-story-card {
  background: var(--steady-light);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-story-card-media {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-story-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.steadyit-story-card h3 {
  margin: 0 0 1rem;
  color: var(--steady-ink);
  font-size: 1.2rem;
}

.steadyit-story-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--steady-muted);
}

.steadyit-story-card li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.steadyit-story-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--steady-accent);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.steadyit-story-values {
  padding: 3.5rem 0 4rem;
  background: var(--steady-light);
}

.steadyit-story-values-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.steadyit-story-values-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--steady-ink);
}

.steadyit-story-values-heading p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-story-values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steadyit-story-value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.steadyit-story-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(187, 32, 32, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.steadyit-story-value-icon svg {
  width: 24px;
  height: 24px;
  fill: #bb2020;
}

.steadyit-story-value-icon.is-orange {
  background: rgba(255, 108, 34, 0.16);
}

.steadyit-story-value-icon.is-orange svg {
  fill: #ff6c22;
}

.steadyit-story-value-card h3 {
  margin: 0 0 0.5rem;
  color: var(--steady-ink);
  font-size: 1.1rem;
}

.steadyit-story-value-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-management {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.steadyit-management-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.steadyit-management-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--steady-ink);
}

.steadyit-management-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steadyit-management-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steadyit-management-card {
  background: var(--steady-light);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(187, 32, 32, 0.08);
  box-shadow: 0 14px 26px rgba(22, 22, 22, 0.08);
  text-align: left;
}

.steadyit-management-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
  margin-bottom: 1rem;
}

.steadyit-management-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: rgba(187, 32, 32, 0.12);
  color: #bb2020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.steadyit-management-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--steady-ink);
}

.steadyit-management-role {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steady-primary);
}

.steadyit-management-card p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steadyit-why-work {
  padding: 3rem 0 3.5rem;
  background: var(--steady-light);
}

.steadyit-why-work-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.steadyit-why-work h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--steady-ink);
}

.steadyit-why-work p {
  margin: 0;
  color: var(--steady-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}

.steadyit-why-work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--steady-primary);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(187, 32, 32, 0.25);
  transition: transform var(--steady-transition), box-shadow var(--steady-transition);
}

.steadyit-why-work-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 26px rgba(187, 32, 32, 0.28);
}

@media (min-width: 992px) {
  .steadyit-why-work-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .steadyit-why-work-btn {
    justify-self: center;
    align-self: center;
  }
}

@media (min-width: 992px) {
  .steadyit-story-hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steadyit-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.steadyit-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h160v160H0z' fill='none'/%3E%3Cpath d='M0 0h160M0 40h160M0 80h160M0 120h160M0 160h160M0 0v160M40 0v160M80 0v160M120 0v160M160 0v160' stroke='rgba(255,255,255,0.18)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.35;
}

@media (min-width: 992px) {
  .steadyit-footer-cta-inner {
    grid-template-columns: 2fr 1fr;
  }

  .steadyit-footer-cta-locations {
    justify-content: flex-end;
  }
}

.steady-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--steady-primary), var(--steady-accent));
  padding: 4.5rem 0;
  color: #ffffff;
}

.steady-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h120v120H0z' fill='none'/%3E%3Cpath d='M0 0h120M0 30h120M0 60h120M0 90h120M0 120h120M0 0v120M30 0v120M60 0v120M90 0v120M120 0v120' stroke='rgba(255,255,255,0.25)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}

.steady-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 2rem;
}

.steady-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.steady-hero-title span {
  color: #f2f2f2;
}

.steady-hero-lead {
  margin: 0.75rem auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(242, 242, 242, 0.9);
}

.steady-hero-stats {
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  max-width: 960px;
}

.steady-hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
}

.steady-hero-stat {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.steady-hero-caption {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(242, 242, 242, 0.85);
}

.steady-page {
  padding: 3.5rem 0 0;
}

@media (min-width: 768px) {
  .steady-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero {
  background: linear-gradient(135deg, rgba(187, 32, 32, 0.08), rgba(255, 108, 34, 0.1));
  border: 1px solid rgba(187, 32, 32, 0.15);
  border-radius: var(--steady-radius);
  padding: 3rem;
  box-shadow: var(--steady-shadow);
  display: grid;
  gap: 1.5rem;
}

.hero-badge {
  align-self: flex-start;
  background: rgba(187, 32, 32, 0.12);
  color: var(--steady-primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0;
  color: var(--steady-ink);
  display: grid;
  gap: 0.35rem;
}

.hero-title span {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--steady-muted);
}

.hero-copy {
  margin: 0;
  color: var(--steady-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--steady-primary);
  color: #ffffff;
  font-weight: 600;
  border: none;
  transition: transform var(--steady-transition), box-shadow var(--steady-transition);
  box-shadow: 0 12px 20px rgba(187, 32, 32, 0.25);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 26px rgba(187, 32, 32, 0.28);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(187, 32, 32, 0.35);
  color: var(--steady-primary);
  font-weight: 600;
  background: #ffffff;
  transition: transform var(--steady-transition), box-shadow var(--steady-transition);
}

.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(187, 32, 32, 0.12);
}

.entry-content {
  color: var(--steady-ink);
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content p {
  margin: 0 0 1.25rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--steady-ink);
  font-weight: 700;
  line-height: 1.2;
  margin: 2rem 0 1rem;
}

.entry-content a {
  color: var(--steady-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.site-footer {
  background: var(--steady-ink);
  color: #ffffff;
  padding: 3.5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.footer-contact a {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--steady-transition), transform var(--steady-transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--steady-transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-logo {
  width: 260px;
  height: 104px;
  max-width: 100%;
  object-fit: contain;
}

.footer-flags {
  display: grid;
  gap: 2rem;
  align-items: start;
  justify-items: start;
  max-width: none;
}

.footer-flag {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 520px;
}

.footer-flag img {
  width: 52px;
  height: auto;
  flex-shrink: 0;
  border-radius: 6px;
}

.footer-flag-title {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-flag-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-flags-wrapper {
  padding: 0 0 1.5rem;
}

.footer-flags-row {
  display: grid;
  gap: 2rem;
}

.footer-flags-spacer {
  display: none;
}

@media (min-width: 900px) {
  .footer-flags-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-flags-spacer {
    display: block;
  }

  .footer-flags {
    grid-column: 2 / span 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-flags {
    gap: 2.5rem;
  }
}

@media (max-width: 899px) {
  .footer-flags {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}
