/*
Theme Name: Mistrz Okien
Theme URI: https://avelto.online
Author: ASAN GROUP LTD
Description: Profesjonalny serwis i naprawa okien
Version: 2.0.0
License: GNU General Public License v2
Text Domain: mistrz-okien
*/

/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Colors */
  --c-primary: #1B5E20;
  --c-primary-dark: #0D3311;
  --c-primary-light: #2E7D32;
  --c-accent: #FF6F00;
  --c-accent-hover: #E56300;
  --c-accent-light: #FFA040;
  --c-white: #ffffff;
  --c-off-white: #FAFAF5;
  --c-bg-alt: #F5F5F0;
  --c-gray-100: #f4f4f2;
  --c-gray-200: #e8e8e4;
  --c-gray-300: #d4d4d0;
  --c-gray-400: #a0a09c;
  --c-gray-500: #777774;
  --c-gray-600: #555552;
  --c-text: #1a1a18;
  --c-text-secondary: #666663;
  --c-text-muted: #999996;
  --c-border: #e4e4e0;
  --c-overlay: rgba(13, 51, 17, 0.85);

  /* Typography */
  --ff-heading: 'DM Serif Display', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-xs: 0.8125rem;   /* 13px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 0.9375rem; /* 15px */
  --fs-md: 1rem;        /* 16px */
  --fs-lg: 1.125rem;    /* 18px */
  --fs-xl: 1.25rem;     /* 20px */
  --fs-2xl: 1.375rem;   /* 22px */
  --fs-3xl: clamp(1.5rem, 3vw, 2rem);
  --fs-4xl: clamp(1.75rem, 4vw, 2.75rem);
  --fs-5xl: clamp(2.25rem, 5vw, 3.5rem);
  --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
  --fs-giant: clamp(3rem, 8vw, 5rem);

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-30: 120px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 50px;
  --r-full: 50%;

  /* Shadows */
  --shadow-soft: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lifted: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-header: 0 2px 20px rgba(0,0,0,0.08);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 150ms;
  --t-normal: 300ms;
  --t-slow: 500ms;

  /* Layout */
  --container: 1200px;
  --header-h: 72px;
  --header-h-mobile: 60px;
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-text);
}
p { line-height: 1.7; }
input, textarea, select {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--c-primary); color: var(--c-white); padding: 12px 24px;
  border-radius: var(--r-pill); z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 8px; }
.text-center { text-align: center; }

/* Section */
.section {
  padding: var(--sp-20) 0;
  position: relative;
}
.section--alt { background: var(--c-off-white); }
.section__header {
  margin-bottom: var(--sp-12);
  max-width: 560px;
}
.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__header h2 {
  font-size: var(--fs-4xl);
  color: var(--c-text);
  line-height: 1.15;
}
.section__subtitle {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  color: var(--c-text-muted);
  margin-top: var(--sp-3);
  line-height: 1.6;
}
.section__eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { flex-shrink: 0; }
.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn--primary:hover { background: #154A19; transform: translateY(-1px); }
.btn--accent {
  background: var(--c-accent);
  color: var(--c-white);
}
.btn--accent:hover { background: var(--c-accent-hover); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--c-primary);
  color: var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: var(--c-white); }
.btn--outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--c-white);
}
.btn--outline-white:hover { background: var(--c-white); color: var(--c-primary-dark); }
.btn--white {
  background: var(--c-white);
  color: var(--c-primary-dark);
}
.btn--white:hover { background: #f0f0f0; }
.btn--secondary {
  background: var(--c-gray-100);
  color: var(--c-text);
}
.btn--secondary:hover { background: var(--c-gray-200); }
.btn--lg { padding: 16px 36px; font-size: var(--fs-md); }
.btn--sm { padding: 10px 20px; font-size: var(--fs-sm); }
.btn--full { width: 100%; }

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* ==========================================================================
   3. HEADER
   ========================================================================== */
.top-bar {
  display: none;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--t-normal), box-shadow var(--t-normal);
}
.site-header.scrolled {
  background: var(--c-white);
  box-shadow: var(--shadow-header);
}
.site-header.scrolled .header__nav-link { color: var(--c-text); }
.site-header.scrolled .header__nav-link:hover { color: var(--c-primary); }
.site-header.scrolled .header__phone { color: var(--c-text); border-color: var(--c-border); }
.site-header.scrolled .header__phone:hover { color: var(--c-primary); border-color: var(--c-primary); }
.site-header.scrolled .header__name { color: var(--c-primary-dark); }
.site-header.scrolled .header__icon rect,
.site-header.scrolled .header__icon line { stroke: var(--c-primary); }
.site-header.scrolled .header__toggle span { background: var(--c-text); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h-mobile);
  padding: 0 var(--sp-5);
  max-width: var(--container);
  margin: 0 auto;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  z-index: 10;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.header__icon { flex-shrink: 0; }
.header__icon rect, .header__icon line { stroke: #fff; transition: stroke var(--t-normal); }
.header__icon circle { fill: var(--c-accent); }
.header__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-white);
  transition: color var(--t-normal);
}
.header__rating { display: none; }

.header__nav { display: none; }
.header__nav-link {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast);
  position: relative;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--t-normal) var(--ease-out);
}
.header__nav-link:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header__phone {
  display: none;
}
.header__phone-number { display: none; }
.header__cta { display: none; }
.header__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.15);
  color: var(--c-white);
  transition: background var(--t-fast);
}
.site-header.scrolled .header__phone-icon {
  background: rgba(27,94,32,0.08);
  color: var(--c-primary);
}
.header__phone-icon:hover { background: rgba(255,255,255,0.25); }
.site-header.scrolled .header__phone-icon:hover { background: rgba(27,94,32,0.15); }

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--t-normal);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: var(--c-primary-dark);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-normal), visibility var(--t-normal);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__header .header__name { color: var(--c-white); }
.mobile-menu__header .header__icon rect,
.mobile-menu__header .header__icon line { stroke: #fff; }

.mobile-menu__close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 28px;
  cursor: pointer;
  border-radius: var(--r-full);
  transition: background var(--t-fast);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-menu__nav {
  padding: var(--sp-4) 0;
  flex: 1;
}
.mobile-menu__nav a,
.mobile-menu__nav .mobile-menu__list li a {
  display: block;
  padding: var(--sp-4) var(--sp-6);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--fs-xl);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-fast);
}
.mobile-menu__nav a:hover,
.mobile-menu__nav .mobile-menu__list li a:hover {
  background: rgba(255,255,255,0.05);
}
.mobile-menu__list { list-style: none; padding: 0; margin: 0; }

.mobile-menu__contact,
.mobile-menu__footer {
  padding: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__phone {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.75rem;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}
.mobile-menu__email {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-base);
  margin-bottom: var(--sp-2);
}
.mobile-menu__hours {
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-sm);
  margin-top: var(--sp-3);
}
.mobile-menu__cta {
  margin-top: var(--sp-4);
}
.mobile-menu__socials {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-6);
}
.mobile-menu__socials a {
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.mobile-menu__socials a:hover { color: var(--c-white); }

/* ==========================================================================
   4. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-primary-dark);
  overflow: hidden;
  padding: calc(var(--header-h-mobile) + var(--sp-10)) var(--sp-5) var(--sp-16);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,51,17,0.95) 0%, rgba(27,94,32,0.7) 100%);
  z-index: 1;
}
.hero__decor {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 420px;
  z-index: 1;
  opacity: 0.08;
}
.hero__decor-window {
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  border-radius: var(--r-md);
  position: relative;
}
.hero__decor-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
}
.hero__decor-window::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transform: translateY(-50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  color: var(--c-white);
  line-height: 1.08;
  margin-bottom: var(--sp-5);
}
.hero__title-accent {
  color: var(--c-accent);
}
.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.hero__phone-btn { display: none; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-sm);
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero__badge svg { flex-shrink: 0; color: var(--c-accent); }

/* ==========================================================================
   5. TRUST MARQUEE
   ========================================================================== */
.trust-marquee {
  background: var(--c-primary-dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.trust-marquee::before,
.trust-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-primary-dark), transparent);
}
.trust-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--c-primary-dark), transparent);
}
.trust-marquee__track {
  display: flex;
  gap: var(--sp-12);
  animation: marquee 35s linear infinite;
  width: max-content;
}
.trust-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.trust-marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--c-accent);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Old trust-bar compatibility (hidden, replaced by marquee) */
.trust-bar { display: none; }

/* ==========================================================================
   6. BENTO SERVICES GRID
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
.bento-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-normal) var(--ease-out), box-shadow var(--t-normal);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}
.bento-card--featured {
  background: var(--c-primary);
  color: var(--c-white);
}
.bento-card--featured .bento-card__text { color: rgba(255,255,255,0.8); }
.bento-card--featured .bento-card__icon { background: rgba(255,255,255,0.15); }
.bento-card--featured .bento-card__icon svg { color: var(--c-accent-light); }
.bento-card--featured .bento-card__link { color: var(--c-accent-light); }

.bento-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: rgba(27,94,32,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--c-primary);
}
.bento-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.bento-card__text {
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.bento-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--c-primary);
  transition: gap var(--t-normal) var(--ease-out);
}
.bento-card__link:hover { gap: var(--sp-3); }
.bento-card__link svg {
  transition: transform var(--t-normal);
}
.bento-card__link:hover svg { transform: translateX(4px); }

/* Fallback for old .card classes */
.card.card--service {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.card.card--service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}
.card__icon { margin-bottom: var(--sp-5); color: var(--c-primary); }
.card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
}
.card__text {
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.grid { display: grid; gap: var(--sp-4); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
.mt-2 { margin-top: var(--sp-8); }

/* ==========================================================================
   7. USP BIG NUMBERS
   ========================================================================== */
.usp-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  padding: var(--sp-16) 0;
}
.usp-number-block {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
}
.usp-number-block__value {
  font-family: var(--ff-heading);
  font-size: var(--fs-giant);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.usp-number-block__label {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}
.usp-number-block__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* Compat: old USP styles map to new */
.usp-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}
.usp-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(27,94,32,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}
.usp-item__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
}
.usp-item__text {
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   8. TIMELINE PROCESS
   ========================================================================== */
.timeline {
  position: relative;
  padding-left: 52px;
  max-width: 640px;
}
.timeline__line {
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--c-gray-200);
}
.timeline-step {
  position: relative;
  padding-bottom: var(--sp-10);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step__number {
  position: absolute;
  left: -52px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.timeline-step__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
  padding-top: var(--sp-2);
}
.timeline-step__text {
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* Compat: old process-steps map to timeline look */
.process-steps {
  position: relative;
  padding-left: 52px;
  max-width: 640px;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--c-gray-200);
}
.process-step {
  position: relative;
  padding-bottom: var(--sp-10);
}
.process-step:last-child { padding-bottom: 0; }
.process-step__number {
  position: absolute;
  left: -52px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.process-step__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
  padding-top: var(--sp-2);
}
.process-step__text {
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   9. CITY PILLS
   ========================================================================== */
.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 24px;
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--c-text);
  transition: all var(--t-normal) var(--ease-out);
  cursor: pointer;
}
.city-pill:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.city-pill__arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--t-normal) var(--ease-out);
}
.city-pill:hover .city-pill__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Compat: old city card style */
.card.card--city {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--r-pill);
  transition: all var(--t-normal);
}
.card.card--city:hover { border-color: var(--c-primary); color: var(--c-primary); }
.card.card--city .card__body { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: var(--sp-2); }
.card.card--city .card__title { font-family: var(--ff-body); font-size: var(--fs-base); font-weight: 600; margin: 0; }
.card.card--city .card__meta { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* ==========================================================================
   10. REVIEWS — ASYMMETRIC
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.review-featured {
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
}
.review-featured__stars {
  color: var(--c-accent);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-5);
  letter-spacing: 2px;
}
.review-featured__text {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}
.review-featured__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-featured__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-lg);
}
.review-featured__name { font-weight: 600; }
.review-featured__source { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); }

.review-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.review-small {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-soft);
}
.review-small__stars {
  color: var(--c-accent);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
  letter-spacing: 1px;
}
.review-small__text {
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.review-small__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-small__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--c-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--c-primary);
}
.review-small__name { font-weight: 600; font-size: var(--fs-sm); }
.review-small__source { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* Compat: old review-card styles */
.review-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-soft);
}
.review-card__stars { color: var(--c-accent); margin-bottom: var(--sp-3); letter-spacing: 1px; }
.review-card__text {
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--c-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--c-primary);
}
.review-card__name { font-weight: 600; font-size: var(--fs-sm); }
.review-card__source { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* ==========================================================================
   11. FAQ — SIDE-BY-SIDE
   ========================================================================== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.faq-intro__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-4);
}
.faq-intro__text {
  font-size: var(--fs-md);
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--sp-4);
}
.faq-item__question:hover { color: var(--c-primary); }
.faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--t-normal) var(--ease-out);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item__answer p {
  padding: 0 0 var(--sp-5);
  font-size: var(--fs-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   12. CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0;
  text-align: center;
}
.cta-banner__circle {
  position: absolute;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.cta-banner__circle--1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.cta-banner__circle--2 { width: 300px; height: 300px; bottom: -150px; left: -80px; }
.cta-banner__circle--3 { width: 200px; height: 200px; top: 50%; left: 60%; opacity: 0.5; }

.cta-banner__content { position: relative; z-index: 2; }
.cta-banner__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-5xl);
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.cta-banner__text {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

/* Compat: old cta-section */
.cta-section {
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-5xl);
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.cta-section p {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-8);
}
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer-cta {
  background: var(--c-primary);
  padding: var(--sp-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-5xl);
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}
.footer-cta__text {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-8);
}
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

.site-footer {
  background: var(--c-primary-dark);
  color: var(--c-white);
  padding: var(--sp-16) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-logo__icon rect,
.footer-logo__icon line { stroke: #fff; }
.footer-logo__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
}
.footer-col__desc {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.footer-social__link {
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.footer-social__link:hover { color: var(--c-white); }

.footer-col__title {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-col__list a {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-base);
  transition: color var(--t-fast);
}
.footer-col__list a:hover { color: var(--c-white); }
.footer-col__list--contact li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.footer-col__list--contact svg { flex-shrink: 0; color: rgba(255,255,255,0.4); }

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--sp-12);
  padding: var(--sp-6) 0;
}
.footer-copyright__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.4);
}
.footer-copyright__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copyright__links a { color: rgba(255,255,255,0.5); transition: color var(--t-fast); }
.footer-copyright__links a:hover { color: var(--c-white); }

/* ==========================================================================
   14. POPUP FORM
   ========================================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  place-items: center;
}
.popup-overlay.active { display: grid; }

.popup {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
  max-width: 420px;
  width: calc(100% - 32px);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform var(--t-normal) var(--ease-out), opacity var(--t-normal);
  position: relative;
}
.popup--visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.popup__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  font-size: 24px;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: background var(--t-fast);
}
.popup__close:hover { background: var(--c-gray-100); }

.popup__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: rgba(27,94,32,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
}
.popup__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  text-align: center;
  margin-bottom: var(--sp-2);
}
.popup__subtitle {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.popup__form { display: flex; flex-direction: column; gap: var(--sp-4); }
.popup__field input {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  color: var(--c-text);
  transition: border-color var(--t-fast);
  outline: none;
}
.popup__field input:focus { border-color: var(--c-primary); }
.popup__field input::placeholder { color: var(--c-gray-400); }

.popup__gdpr {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  cursor: pointer;
  line-height: 1.5;
}
.popup__gdpr input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-primary);
}

.popup__submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--r-pill);
  background: var(--c-accent);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  min-height: 52px;
  transition: background var(--t-fast);
}
.popup__submit:hover { background: var(--c-accent-hover); }
.popup__submit:disabled { opacity: 0.7; cursor: wait; }

.popup__safe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-4);
}

.popup__success { text-align: center; }
.popup__success-icon { margin-bottom: var(--sp-5); }
.popup__phone-link {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  color: var(--c-primary);
  margin: var(--sp-4) 0 var(--sp-6);
}

/* ==========================================================================
   15. STICKY MOBILE CTA
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-white);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  padding: var(--sp-3) var(--sp-4);
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.sticky-mobile-cta .btn,
.sticky-mobile-cta a,
.sticky-mobile-cta button {
  min-height: 48px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
}
.sticky-call {
  background: var(--c-white);
  border: 1.5px solid var(--c-primary);
  color: var(--c-primary);
}
.sticky-form {
  background: var(--c-accent);
  color: var(--c-white);
}

/* ==========================================================================
   16. BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  padding: var(--sp-4) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.breadcrumbs a { color: var(--c-text-secondary); transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs .separator { margin: 0 var(--sp-2); color: var(--c-gray-300); }
.breadcrumbs .current { color: var(--c-text); font-weight: 500; }

/* ==========================================================================
   17. BLOG
   ========================================================================== */
.blog-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lifted); }
.blog-card__image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: var(--sp-6); }
.blog-card__category {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}
.blog-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* Text muted compat */
.text-muted { color: var(--c-text-muted); }

/* Service page hero */
.service-hero, .city-hero {
  background: var(--c-primary-dark);
  padding: calc(var(--header-h-mobile) + var(--sp-12)) 0 var(--sp-12);
  color: var(--c-white);
}
.service-hero h1, .city-hero h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-5xl);
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}

/* Section with gray bg compat */
.section--gray { background: var(--c-off-white); }

/* ==========================================================================
   17b. MOBILE STICKY BAR BODY PADDING (< 768px — when sticky CTA visible)
   ========================================================================== */
@media (max-width: 767.98px) {
  body { padding-bottom: 72px; } /* space for sticky CTA */
}

/* ==========================================================================
   18. RESPONSIVE — TABLETS (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  .container { padding: 0 var(--sp-8); }
  .section { padding: var(--sp-24) 0; }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(3, 1fr); }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--featured { grid-column: span 2; }

  .usp-numbers { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .usp-number-block { border-right: 1px solid var(--c-gray-200); }
  .usp-number-block:last-child { border-right: none; }

  .reviews-grid { grid-template-columns: 1.3fr 1fr; }

  .faq-layout { grid-template-columns: 1fr 1.5fr; gap: var(--sp-16); }
  .faq-intro { position: sticky; top: 100px; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-copyright__inner { flex-direction: row; justify-content: space-between; align-items: center; }

  .hero { padding: 0 var(--sp-10); clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
  .hero__content { padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-24); }
  .hero__phone-btn { display: inline-flex; }
  .hero__decor { right: 5%; opacity: 0.12; width: 380px; height: 500px; }

  /* Popup: centered modal on tablet+ */
  .popup { padding: var(--sp-12); }

  .service-hero, .city-hero {
    padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-16);
  }
}

/* ==========================================================================
   19. RESPONSIVE — DESKTOP (992px+)
   ========================================================================== */
@media (min-width: 992px) {
  :root {
    --header-h: 80px;
  }

  .header__inner { height: var(--header-h); padding: 0 var(--sp-10); }
  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
  }
  .header__phone {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 10px 20px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--r-pill);
    color: var(--c-white);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: all var(--t-normal);
  }
  .header__phone:hover { background: rgba(255,255,255,0.1); }
  .header__phone-number { display: inline; }
  .header__phone-icon { display: none; }
  .header__cta { display: inline-flex; }
  .header__toggle { display: none; }
  .header__rating { display: flex; align-items: center; gap: var(--sp-2); margin-left: var(--sp-4); }
  .header__stars { color: var(--c-accent); font-size: var(--fs-sm); font-weight: 600; }
  .header__reviews { color: rgba(255,255,255,0.6); font-size: var(--fs-xs); }
  .site-header.scrolled .header__stars { color: var(--c-accent); }
  .site-header.scrolled .header__reviews { color: var(--c-text-muted); }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }

  .bento-grid { grid-template-columns: repeat(3, 1fr); }

  .timeline { padding-left: 64px; }
  .timeline__line { left: 27px; }
  .timeline-step__number { left: -64px; width: 48px; height: 48px; font-size: var(--fs-lg); }
  .process-steps { padding-left: 64px; }
  .process-steps::before { left: 27px; }
  .process-step__number { left: -64px; width: 48px; height: 48px; font-size: var(--fs-lg); }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

  /* Sticky mobile bar hidden on desktop */
  .sticky-mobile-cta { display: none; }

  /* Popup: bottom-sheet only on mobile, centered on desktop */
  .popup {
    max-width: 440px;
    border-radius: var(--r-lg);
  }
}

/* ==========================================================================
   20. RESPONSIVE — LARGE DESKTOP (1200px+)
   ========================================================================== */
@media (min-width: 1200px) {
  .container { padding: 0 var(--sp-10); }
  .hero__decor { right: 10%; opacity: 0.15; width: 450px; height: 580px; }
}

/* ==========================================================================
   21. MOBILE BOTTOM-SHEET POPUP (< 576px)
   ========================================================================== */
@media (max-width: 575.98px) {
  .popup-overlay.active { align-items: flex-end; }
  .popup {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    max-width: 100%;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--sp-8) var(--sp-5);
  }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ==========================================================================
   22. PRINT STYLES
   ========================================================================== */
@media print {
  .site-header, .sticky-mobile-cta, .popup-overlay, .mobile-menu,
  .mobile-menu-overlay, .trust-marquee, .cta-banner, .footer-cta { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ==========================================================================
   23. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
  .trust-marquee__track { animation: none; }
}

/* ==========================================================================
   24. WORDPRESS-SPECIFIC
   ========================================================================== */
.wp-block-image { margin: var(--sp-6) 0; }
.wp-block-image img { border-radius: var(--r-md); }
.entry-content { max-width: 720px; margin: 0 auto; }
.entry-content h2 { font-size: var(--fs-4xl); margin: var(--sp-10) 0 var(--sp-4); }
.entry-content h3 { font-size: var(--fs-3xl); margin: var(--sp-8) 0 var(--sp-3); }
.entry-content p { margin-bottom: var(--sp-5); }
.entry-content ul, .entry-content ol { padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.entry-content li { margin-bottom: var(--sp-2); }
.entry-content a { color: var(--c-primary); text-decoration: underline; }
.entry-content a:hover { color: var(--c-primary-dark); }
.entry-content blockquote {
  border-left: 4px solid var(--c-primary);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
  background: var(--c-off-white);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--c-text-secondary);
}
