/* ============================================
   LABEZ — Main Stylesheet
   kartelmedia-labez WordPress Theme
   ============================================ */

/* --- Reset & Base --- */

.border {
  border: 1px solid red;
}

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

:root {
  --primary: #1a2a3a;
  --primary-light: #2a3f55;
  --accent: #fecb00;
  --accent-hover: #e5b700;
  --secondary: #179aaf;
  --secondary-light: #1cb5ce;
  --bg-light: #f5f6fa;
  --bg-white: #ffffff;
  --text: #2a3a47;
  --text-light: #5a6a7a;
  --text-muted: #8a9aaa;
  --border: #e2e6ea;
  --footer-bg: #111827;
  --footer-text: #9ca3af;
  --success: #10b981;
  --danger: #ef4444;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Montserrat", "Inter", sans-serif;
  --section-padding: 5rem 0;
  --container-width: 1200px;
  --transition: all 0.3s ease;
  /* WP layout system — used by core blocks is-layout-constrained */
  --wp--style--global--content-size: 1200px;
  --wp--style--global--wide-size: 1440px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--secondary-light);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1rem;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Section --- */
.section {
  padding: var(--section-padding);
}
.section--light {
  background: var(--bg-light);
}

.section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.section-header h2 {
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 1000px;
  margin: 1rem auto 0;
}

.section-max-width {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 2rem;
}

/* ============================================
   HEADER
   ============================================ */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Push page content below the fixed header (38px top-bar + 80px header) */
.site-content {
  padding-top: 118px;
}

.header-top {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.header__contact a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.header__contact a:hover {
  color: var(--accent);
}

.header__contact svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.header__lang {
  display: flex;
  gap: 0.2rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.header__lang a {
  padding: 0.15rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  transition: var(--transition);
}

.header__lang a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Active lang — direct <a class="active"> and Polylang <a class="current-lang"> */
.header__lang a.current-lang,
.header__lang a.active,
.header__lang li.current-lang > a {
  background: var(--accent);
  color: var(--primary);
}

/* Polylang renders <li> directly inside .header__lang (no <ul> wrapper) */
.header__lang li {
  list-style: none;
  display: block;
}

.header__lang li::marker {
  display: none;
}

/* Fallback: if Polylang ever wraps in <ul> */
.header__lang ul {
  display: contents;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 80px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img,
.header__logo-img {
  height: 64px;
  max-height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* Custom logo WP — override inline width/height attrs */
.header__logo .custom-logo-link {
  display: block;
  line-height: 0;
}
.header__logo .custom-logo-link img,
.header__logo .custom-logo {
  height: 64px !important;
  max-height: 64px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain;
}

.header__cert-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__cert-badge {
  display: flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__cert-badge:hover {
  opacity: 1;
}
.header__cert-badge img {
  height: 36px;
  width: auto;
  display: block;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 0.15rem;
}

.nav__link,
.nav__list li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.nav__link:hover,
.nav__list li > a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.nav__link--active,
.current-menu-item > .nav__link,
.current-menu-item > a,
.current-page-ancestor > .nav__link,
.current-page-ancestor > a {
  color: var(--secondary);
  font-weight: 600;
  position: relative;
}

.nav__link--active::after,
.current-menu-item > .nav__link::after,
.current-menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
}

.header__cta {
  flex-shrink: 0;
}
.header__cta .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  margin-top: 0;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
  background: var(--primary);
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* Background slideshow */
.slideshow-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.slideshow-bg__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slideshow-bg__slide--active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .slideshow-bg__slide {
    transition: none;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(254, 203, 0, 0.12);
  border: 1px solid rgba(254, 203, 0, 0.25);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero h1 em,
.hero h1 span {
  color: var(--accent);
  font-style: normal;
}

.hero p:not(.hero__tagline):not(.hero__badge):not(.section__eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  position: relative;
  margin-top: 0;
  padding: 4rem 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(254, 203, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--bg-white);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--bg-white);
}
.btn--secondary:hover {
  background: var(--secondary-light);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--primary);
  color: var(--bg-white);
}
.btn--dark:hover {
  background: var(--primary-light);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   GUTENBERG BUTTON BLOCK — LABEZ STYLES
   is-style-labez-* applied to core/button
   ============================================ */

/* Normalize ALL WP button links to match mockup .btn */
.wp-block-button__link,
.wp-block-button__link.wp-element-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.85rem 1.75rem !important;
  font-size: 0.95rem !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 8px !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}

.wp-block-button.is-style-labez-primary .wp-block-button__link,
.wp-block-button.is-style-labez-primary
  .wp-block-button__link:not(.has-background) {
  background-color: var(--accent) !important;
  color: var(--primary) !important;
  border-color: var(--accent) !important;
}
.wp-block-button.is-style-labez-primary .wp-block-button__link:hover {
  background-color: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(254, 203, 0, 0.4);
}

.wp-block-button.is-style-labez-outline .wp-block-button__link,
.wp-block-button.is-style-labez-outline
  .wp-block-button__link:not(.has-background) {
  background-color: transparent !important;
  color: var(--bg-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
.wp-block-button.is-style-labez-outline .wp-block-button__link:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.wp-block-button.is-style-labez-dark .wp-block-button__link,
.wp-block-button.is-style-labez-dark
  .wp-block-button__link:not(.has-background) {
  background-color: var(--primary) !important;
  color: var(--bg-white) !important;
  border-color: var(--primary) !important;
}
.wp-block-button.is-style-labez-dark .wp-block-button__link:hover {
  background-color: var(--primary-light) !important;
  transform: translateY(-2px);
}

.wp-block-button.is-style-labez-secondary .wp-block-button__link,
.wp-block-button.is-style-labez-secondary
  .wp-block-button__link:not(.has-background) {
  background-color: var(--secondary) !important;
  color: var(--bg-white) !important;
  border-color: var(--secondary) !important;
}
.wp-block-button.is-style-labez-secondary .wp-block-button__link:hover {
  background-color: var(--secondary-light) !important;
  transform: translateY(-2px);
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card__icon--ndt {
  background: rgba(23, 154, 175, 0.1);
  color: var(--secondary);
}
.card__icon--dt {
  background: rgba(254, 203, 0, 0.1);
  color: var(--accent-hover);
}
.card__icon--qual {
  background: rgba(26, 42, 58, 0.08);
  color: var(--primary);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--secondary);
}

.card__link:hover {
  gap: 0.6rem;
  color: var(--secondary-light);
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cert-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 1rem;
  align-items: start;
}

.cert-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.cert-card__placeholder {
  width: 220px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / -1;
  padding: 1rem;
}

.cert-card__placeholder img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
}
.cert-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}
.cert-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.cert-card .btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Certifications detail page */
.cert-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.cert-detail-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cert-detail-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.cert-detail-card__image {
  width: 100%;
  height: 480px;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  box-sizing: border-box;
}

.cert-detail-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cert-detail-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cert-detail-card__body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.cert-detail-card__body p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cert-detail-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.9rem;
  flex: 1;
}

.cert-detail-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cert-detail-card__meta strong {
  color: var(--primary);
}
.cert-detail-card__body .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* --- Wariant: Karta lewa (zdjęcie po lewej) --- */
.cert-detail--left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.cert-detail--left .cert-detail-card {
  flex-direction: row;
  min-height: 320px;
}

.cert-detail--left .cert-detail-card__image {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--border);
  padding: 1.5rem;
}

.cert-detail--left .cert-detail-card__image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cert-detail--left {
    grid-template-columns: 1fr;
  }
  .cert-detail--left .cert-detail-card {
    flex-direction: column;
  }
  .cert-detail--left .cert-detail-card__image {
    width: 100%;
    height: 280px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}
.cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.cta .btn {
  margin: 0 0.5rem;
}

/* ============================================
   ABOUT
   ============================================ */
/* .about-content is the block section wrapper — grid lives in .about-content__grid inside .container */

.about-content__text h2 {
  margin-bottom: 1rem;
}
.about-content__text p {
  color: var(--text-light);
}

.about-content__image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.about-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols-lg, 3), 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(23, 154, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: var(--secondary);
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}
.feature-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   SERVICES
   ============================================ */
/* .services-columns is the block section wrapper — grid lives in .services-cols inside .container */

.services-column {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.services-column__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.services-column__header .card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.services-column__header h2 {
  font-size: 1.5rem;
}
.services-column__header p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.service-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bg-light);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item__abbr {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.service-item__abbr--ndt {
  background: rgba(23, 154, 175, 0.08);
  color: var(--secondary);
}
.service-item__abbr--dt {
  background: rgba(254, 203, 0, 0.1);
  color: var(--accent-hover);
}

.service-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.service-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.additional-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.additional-service {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.additional-service:hover {
  border-color: var(--secondary);
}
.additional-service__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}
.additional-service h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.additional-service p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(23, 154, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--secondary);
}

.contact-info__body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.contact-info__item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.contact-info__item p,
.contact-info__item a {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* ============================================
   CONTACT FORM 7
   ============================================ */
.wpcf7-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.wpcf7-acceptance {
  margin-bottom: 0rem !important;
}

@media (min-width: 768px) {
  .wpcf7-form {
    grid-template-columns: 1fr 1fr;
  }
}

.wpcf7-form .span-full {
  grid-column: 1 / -1;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand h3 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--footer-text);
}

.footer__map {
  width: 100%;
  height: 120px;
  background: #1f2937;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid #374151;
}

.footer__title {
  color: var(--bg-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  color: var(--footer-text);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none !important;
}
.footer__links a:hover {
  color: var(--accent);
}

/* WP nav_menu in footer override */
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links ul li {
  list-style: none;
}
.footer__links ul li a {
  color: var(--footer-text);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer__links ul li a:hover {
  color: var(--accent);
}

.footer__links ul li.current-menu-item > a,
.footer__links ul li.current-page-ancestor > a,
.footer__links ul li.current-menu-ancestor > a {
  text-decoration: none;
  color: var(--footer-text);
}

.footer__links ul li.current-menu-item > a::after,
.footer__links ul li.current-page-ancestor > a::after,
.footer__links ul li.current-menu-ancestor > a::after {
  display: none;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--secondary);
  flex-shrink: 0;
}
.footer__contact-item a {
  color: var(--footer-text);
  text-decoration: none !important;
}
.footer__contact-item a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer__bottom a {
  color: var(--footer-text);
}
.footer__bottom a:hover {
  color: var(--accent);
}

.footer__bottom-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}
.footer__bottom-nav li {
  margin: 0;
}

/* ============================================
   CERT MODAL
   ============================================ */
.cert-modal {
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--bg-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cert-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.cert-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--bg-light);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-modal__close svg {
  width: 18px;
  height: 18px;
}
.cert-modal__close:hover {
  background: var(--border);
}

.cert-modal__title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cert-modal__img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* ============================================
   FOCUS VISIBLE
   ============================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================
   WORDPRESS ALIGNMENT
   ============================================ */
.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}
.aligncenter {
  display: block;
  margin: 0 auto 1rem;
}
.alignwide {
  max-width: 1400px;
}
.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header-top {
    display: none;
  }
  .site-content {
    padding-top: 80px;
  } /* top-bar hidden, only 80px header remains */
  .hero {
    margin-top: 0;
  }
  .page-hero {
    margin-top: 0;
  }
  .header__cta {
    display: none;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(var(--cols-md, 2), 1fr);
  }
  .additional-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .header__cert-badges {
    display: none;
  }

  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav--open {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 999;
    padding: 2rem;
    overflow-y: auto;
  }

  .nav--open .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .nav--open .nav__link,
  .nav--open .nav__list li > a {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
  .certs {
    grid-template-columns: 1fr;
  }

  .cert-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cert-card__placeholder {
    width: 100%;
    grid-row: auto;
    margin-bottom: 1rem;
  }

  /* .about-content and .services-columns are section wrappers, not grids */
  .cert-detail {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(var(--cols-sm, 1), 1fr);
  }
  .additional-services {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 3rem 0;
  }

  .services-column {
    padding: 1.5rem;
  }
}

/* ============================================
   BLOCK — Hero Slider (new classes)
   ============================================ */
.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
}
.hero__slide--placeholder {
  background: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 58, 0.65);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero__tagline,
.hero__badge,
.hero .section__eyebrow {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(254, 203, 0, 0.12);
  border: 1px solid rgba(254, 203, 0, 0.25);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero__heading,
.hero .wp-block-heading {
  color: var(--bg-white);
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  overflow-wrap: anywhere;
}

.hero__heading mark.has-inline-color,
.page-hero__heading mark.has-inline-color {
  background: none;
  padding: 0;
}

mark.labez-text-color {
  background: none;
  padding: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Gutenberg core/buttons inside hero — align with mockup .hero__buttons */
.hero .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

.hero__controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__arrow {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: var(--transition);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero__dots {
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero__dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section__header h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.section__header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: block;
}

.section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.section__title--left {
  text-align: left;
}
.section__title--left::after {
  margin-left: 0;
}

.section__eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section__intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin: -1.5rem auto 2.5rem;
}

/* Header scrolled state */
.header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ============================================
   BLOCK — About Content
   ============================================ */
.about-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content__media {
  border-radius: 12px;
  overflow: hidden;
}
.about-content__img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content__body {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-stat__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.about-stat__label {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================
   BLOCK — Features Grid
   ============================================ */
.feature {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(23, 154, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: var(--secondary);
}

.section--dark .feature__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.feature__title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.feature__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* InnerBlocks context — core/heading and core/paragraph inside feature-card */
.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.feature p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}
.section--dark .feature h3 {
  color: var(--bg-white);
}
.section--dark .feature p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   BLOCK — Services Columns
   ============================================ */
.services-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.services-col {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.services-col:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.services-col__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.services-col__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--col-accent, var(--secondary));
  background: color-mix(
    in srgb,
    var(--col-accent, var(--secondary)) 10%,
    transparent
  );
}

.services-col__title {
  font-size: 1.5rem;
  margin: 0 0 0.15rem;
}
.services-col__subtitle {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

/* service-item inside WP block — accent-tinted badge matching mockup */
.services-col .service-item__abbr {
  color: var(--col-accent, var(--secondary));
  background: color-mix(
    in srgb,
    var(--col-accent, var(--secondary)) 10%,
    transparent
  );
}

.services-col__list {
  display: flex;
  flex-direction: column;
}

.services-col__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 0.92rem;
  color: var(--text);
  list-style: none;
}

.services-col__list li:last-child {
  border-bottom: none;
}

/* InnerBlocks context styles — core/list inside service-column (legacy, not the column header) */
.services-col h3:not(.services-col__title) {
  font-size: 1.4rem;
  margin: 0 0 1.25rem;
}

.services-col .wp-block-list,
.services-col ul:not(.services-col__list) {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-col .wp-block-list li,
.services-col ul:not(.services-col__list) li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 0.92rem;
  color: var(--text);
  list-style: none;
}

.services-col .wp-block-list li:last-child,
.services-col ul:not(.services-col__list) li:last-child {
  border-bottom: none;
}

/* ============================================
   BLOCK — Additional Services
   ============================================ */
.add-services-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols-lg, 4), 1fr);
  gap: 1.5rem;
}

.add-service {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.add-service:hover {
  border-color: var(--secondary);
}

.add-service__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.add-service__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.add-service__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   BLOCK — Contact Section
   ============================================ */
.contact-section .section__title {
  margin-bottom: 3rem;
}

.contact-info__title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info__item i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(23, 154, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
}

.contact-info__item span,
.contact-info__item a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-info__item a:hover {
  color: var(--secondary);
}

/* ============================================
   BLOCK — CTA Banner (new layout)
   ============================================ */
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta__title {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}
.cta__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}
.cta__text {
  flex: 1;
  min-width: 260px;
}

/* ============================================
   BLOCK — Google Maps Consent
   ============================================ */
.maps-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.maps-wrap iframe {
  display: block;
  width: 100%;
}

.maps-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 250px;
}

.maps-consent__text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  max-width: 360px;
}
.maps-placeholder {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  color: var(--text-light);
}

/* ============================================
   BTN SIZE VARIANTS
   ============================================ */
.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ============================================
   PAGE HERO (block)
   ============================================ */
.page-hero {
  position: relative;
  margin-top: 0;
  padding: 4rem 0;
  background: var(--primary);
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 58, 0.65);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.page-hero__breadcrumb a:hover {
  color: var(--accent);
}

.page-hero__heading {
  color: var(--bg-white);
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.page-hero__subheading {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin: 0;
}

/* ============================================
   CORE BLOCK LAYOUT — width constraints
   Classic themes without theme.json get no automatic content-size
   constraint for is-layout-flex core blocks. Mirror .container here
   so wp-block-group / wp-block-columns respect our content width.
   Our LABEZ blocks manage their own .container and are unaffected.
   ============================================ */
.site-main > .wp-block-group:not(.alignfull):not(.alignwide),
.site-main > .wp-block-columns:not(.alignfull):not(.alignwide) {
  max-width: var(--container-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

/* ============================================
   CORE BLOCKS — Content Typography
   Paragraphs and headings inside native WP blocks
   match the theme design (text-light, spacing).
   ============================================ */
.site-main .wp-block-heading {
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}
.site-main .wp-block-paragraph,
.site-main .wp-block-column p {
  color: var(--text-light);
  line-height: 1.8;
}
.site-main .wp-block-column > h2,
.site-main .wp-block-column > h3,
.site-main .wp-block-column > h4 {
  margin-bottom: 1rem;
}

/* ============================================
   BLOCK STYLE — core/image: Lekkie zaokrąglenie
   Matches mockup: border-radius 12px + cover fit
   ============================================ */
.wp-block-image.is-style-zaokraglenie img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   RESPONSIVE — NEW BLOCKS
   ============================================ */
@media (max-width: 1024px) {
  .add-services-grid {
    grid-template-columns: repeat(var(--cols-md, 2), 1fr);
  }
  .services-cols {
    grid-template-columns: 1fr;
  }
  .about-content__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero__heading {
    font-size: 2rem;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  .hero .wp-block-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero__heading {
    font-size: 2rem;
  }
  .page-hero {
    margin-top: 0;
  }
  .add-services-grid {
    grid-template-columns: repeat(var(--cols-sm, 1), 1fr);
  }
}
