/* ============================================================
   BOSSERT MALER GIPSER AG — Redesign by digital M.
   Unique Design: Painter/Plasterer Aesthetic
   Colors derived from original bossertag.ch
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  /* Brand Colors — modernized from original */
  --primary: #004E94;
  --primary-light: #1A6DB5;
  --primary-dark: #003A6F;
  --accent: #E30613;
  --accent-light: #FF2D3B;
  --accent-dark: #B8050F;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --cream: #F0F1F4;
  --gray-100: #E8E9ED;
  --gray-200: #D1D3D9;
  --gray-300: #B0B3BC;
  --gray-400: #8A8D97;
  --gray-500: #6B6E78;
  --gray-600: #4D5059;
  --gray-700: #363840;
  --gray-800: #22242B;
  --gray-900: #121318;

  /* Maler-specific warm tones */
  --warm-bg: #FAF9F7;
  --warm-cream: #F5F0EB;
  --warm-sand: #E8DFD4;
  --warm-clay: #C4B5A3;
  --warm-brown: #8B7355;

  /* Typography */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --header-height: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 78, 148, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 78, 148, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 78, 148, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 78, 148, 0.16);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

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

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 78, 148, 0.3);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding: 0.875rem 1rem;
}

.btn--ghost:hover {
  background: rgba(0, 78, 148, 0.06);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

/* --- Section Labels / Badges --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.8);
}

.section-label--light::before {
  background: rgba(255, 255, 255, 0.5);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 78, 148, 0.08);
  transition: all var(--transition-base);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  height: 68px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.header__logo-sub {
  font-size: 0.6875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--primary);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  transform: scaleX(1);
}

.header__nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.header__nav-item:hover .header__nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

.header__nav-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.header__dropdown-link:hover {
  background: var(--off-white);
  color: var(--primary);
  padding-left: 1.5rem;
}

.header__dropdown-link svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.header__dropdown-link:hover svg {
  color: var(--primary);
}

.header__cta {
  margin-left: 1rem;
}

/* Mobile Toggle */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-800);
}

.header__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: var(--space-2xl);
  transition: right var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu__overlay.open {
  opacity: 1;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-600);
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu__nav {
  list-style: none;
}

.mobile-menu__nav li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu__nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-800);
  text-decoration: none;
}

.mobile-menu__nav a:hover {
  color: var(--primary);
}

.mobile-menu__sub {
  list-style: none;
  padding-left: 1rem;
}

.mobile-menu__sub a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
  padding: 0.625rem 0;
}

.mobile-menu__contact {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-100);
}

.mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.mobile-menu__contact svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* ============================================================
   HERO — Painter's Canvas Style
   Full-bleed with textured overlay
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-900);
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* Texture overlay — paint brush stroke effect */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(0, 78, 148, 0.7) 0%, rgba(0, 58, 111, 0.4) 50%, transparent 100%),
    linear-gradient(to bottom, transparent 60%, var(--gray-900) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--space-lg);
  max-width: 720px;
}

.hero__title span {
  color: var(--accent-light);
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================================
   SERVICES OVERVIEW — Stacked Cards with Color Peek
   ============================================================ */
.services {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.services__header .section-subtitle {
  margin: var(--space-md) auto 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.service-card__color-bar--blue { background: var(--primary); }
.service-card__color-bar--red { background: var(--accent); }
.service-card__color-bar--warm { background: var(--warm-brown); }
.service-card__color-bar--teal { background: #1A8B7A; }

.service-card__body {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-card__icon--blue {
  background: rgba(0, 78, 148, 0.08);
  color: var(--primary);
}

.service-card__icon--red {
  background: rgba(227, 6, 19, 0.08);
  color: var(--accent);
}

.service-card__icon--warm {
  background: rgba(139, 115, 85, 0.1);
  color: var(--warm-brown);
}

.service-card__icon--teal {
  background: rgba(26, 139, 122, 0.1);
  color: #1A8B7A;
}

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

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   ABOUT / HISTORY STRIP — Timeline Aesthetic
   ============================================================ */
.about-strip {
  padding: var(--space-5xl) 0;
  background: var(--warm-bg);
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 78, 148, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-strip__content {
  position: relative;
}

.about-strip__title {
  margin-bottom: var(--space-lg);
}

.about-strip__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
}

.about-strip__milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.milestone {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--primary);
}

.milestone__year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.milestone__text {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.about-strip__visual {
  position: relative;
}

.about-strip__image-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-strip__image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-strip__accent-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
}

.about-strip__accent-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-strip__accent-text {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-bar__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================================
   FEATURE SECTION — Alternating Image+Text
   ============================================================ */
.feature-section {
  padding: var(--space-5xl) 0;
}

.feature-section--alt {
  background: var(--off-white);
}

.feature-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.feature-section__inner--reversed {
  direction: rtl;
}

.feature-section__inner--reversed > * {
  direction: ltr;
}

.feature-section__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
}

.feature-section__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.feature-section__image-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.feature-section__content {
  max-width: 520px;
}

.feature-section__title {
  margin-bottom: var(--space-lg);
}

.feature-section__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
}

.feature-section__list {
  list-style: none;
  margin-bottom: var(--space-2xl);
}

.feature-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.feature-section__list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   CTA BANNER — Paint Swatch Style
   ============================================================ */
.cta-banner {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   CTA SPLIT — Image + Text side by side
   ============================================================ */
.cta-split {
  padding: var(--space-5xl) 0;
  background: var(--warm-bg);
}

.cta-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.cta-split__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.cta-split__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.cta-split__content {
  max-width: 480px;
}

.cta-split__title {
  margin-bottom: var(--space-lg);
}

.cta-split__text {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

/* ============================================================
   TESTIMONIAL / TRUST SECTION
   ============================================================ */
.testimonials {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-card__quote::before {
  content: '';
  display: block;
  width: 32px;
  height: 24px;
  margin-bottom: var(--space-md);
  background: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M4.583 17.321C3.553 16.227 3 15 3 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179zm10 0C13.553 16.227 13 15 13 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M4.583 17.321C3.553 16.227 3 15 3 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179zm10 0C13.553 16.227 13 15 13 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  opacity: 0.5;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-800);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: #F59E0B;
  fill: #F59E0B;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  padding: var(--space-5xl) 0;
  background: var(--off-white);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__item.active {
  border-color: var(--primary);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--primary);
}

.faq__question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   CONTACT SPLIT
   ============================================================ */
.contact {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
}

.contact__info h2 {
  margin-bottom: var(--space-lg);
}

.contact__info-text {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.contact__details {
  list-style: none;
  margin-bottom: var(--space-2xl);
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.contact__details-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(0, 78, 148, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__details-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact__details-content {
  flex: 1;
}

.contact__details-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.contact__details-value {
  font-size: 0.9375rem;
  color: var(--gray-800);
  margin-bottom: 0;
}

.contact__details-value a {
  color: var(--gray-800);
  text-decoration: none;
}

.contact__details-value a:hover {
  color: var(--primary);
}

.contact__team {
  margin-top: var(--space-2xl);
}

.contact__team-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--gray-800);
}

.contact__team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact__team-member {
  padding: var(--space-md);
  background: var(--off-white);
  border-radius: var(--border-radius-sm);
}

.contact__team-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 0.125rem;
}

.contact__team-role {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

/* Contact Form */
.contact__form-wrapper {
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
}

.contact__form-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 78, 148, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  text-decoration: none;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer__brand-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-xl);
}

.footer__certifications {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.footer__cert-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.375rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__cert-badge svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.625rem;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: var(--space-3xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: var(--space-xl);
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   PAGE HEADER — Inner Pages
   ============================================================ */
.page-header {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary-light) 100%);
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.page-header__breadcrumb a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.page-header__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.page-header__breadcrumb span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
}

.page-header__breadcrumb .current {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail {
  padding: var(--space-5xl) 0;
}

.service-detail__intro {
  max-width: 720px;
  margin-bottom: var(--space-4xl);
}

.service-detail__intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.service-detail-card {
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.service-detail-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.service-detail-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: rgba(0, 78, 148, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-detail-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-detail-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-detail-card__text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.service-detail-card__list {
  list-style: none;
  margin-top: var(--space-md);
}

.service-detail-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.service-detail-card__list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Service page image gallery */
.service-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 480px;
}

.service-gallery__item:first-child {
  grid-row: 1 / -1;
}

.service-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PARTNERS / TRUST LOGOS
   ============================================================ */
.partners {
  padding: var(--space-3xl) 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.partners__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.partners__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  white-space: nowrap;
}

.partners__logos {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.partners__logo {
  opacity: 0.4;
  transition: opacity var(--transition-fast);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-600);
}

.partners__logo:hover {
  opacity: 0.8;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.team__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.team-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

/* ============================================================
   HISTORY TIMELINE
   ============================================================ */
.timeline {
  padding: var(--space-5xl) 0;
  background: var(--off-white);
}

.timeline__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.timeline__list {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--gray-200);
}

.timeline__item {
  position: relative;
  padding-left: 72px;
  margin-bottom: var(--space-2xl);
}

.timeline__dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
}

.timeline__item--accent .timeline__dot {
  border-color: var(--accent);
  background: var(--accent);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.timeline__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.375rem;
}

.timeline__text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   VALUES GRID
   ============================================================ */
.values {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.values__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 78, 148, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.value-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}

.value-card__text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   GERÜSTE — Scaffolding specific
   ============================================================ */
.scaffold-types {
  padding: var(--space-5xl) 0;
}

.scaffold-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.scaffold-card {
  background: var(--off-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.scaffold-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.scaffold-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: rgba(0, 78, 148, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.scaffold-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.scaffold-card__title {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.scaffold-card__text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  position: relative;
  height: 400px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile
   ============================================================ */
@media (max-width: 968px) {
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu__overlay {
    display: block;
  }

  .hero__stats {
    gap: var(--space-2xl);
  }

  .hero__stat-number {
    font-size: 2rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-strip__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-strip__accent-card {
    position: static;
    display: inline-block;
    margin-top: var(--space-lg);
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .feature-section__inner,
  .feature-section__inner--reversed {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    direction: ltr;
  }

  .cta-split__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .service-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .about-strip__milestones {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__team-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner__actions {
    flex-direction: column;
  }

  .stats-bar__inner {
    grid-template-columns: 1fr;
  }
}
