/* ==========================================================================
   ASV Pest Control GmbH - Main Stylesheet
   Modern, Webflow-inspired design with clean typography and generous whitespace
   ========================================================================== */

/* ==========================================================================
   1. CSS RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ==========================================================================
   2. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Brand Colors */
  --brand-orange: #E8722A;
  --brand-red: #D94452;
  --brand-pink: #C7346A;
  --brand-magenta: #A83279;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #E8722A 0%, #D94452 35%, #C7346A 70%, #A83279 100%);
  --gradient-brand-hover: linear-gradient(135deg, #D4651F 0%, #C53D4A 35%, #B32E5F 70%, #952D6C 100%);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F5F5F5;
  --gray-100: #EBEBEB;
  --gray-200: #D4D4D4;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Semantic */
  --success: #16A34A;
  --error: #DC2626;

  /* Spacing Scale (4px increments) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-13: 52px;
  --space-14: 56px;
  --space-15: 60px;
  --space-16: 64px;
  --space-17: 68px;
  --space-18: 72px;
  --space-19: 76px;
  --space-20: 80px;
  --space-21: 84px;
  --space-22: 88px;
  --space-23: 92px;
  --space-24: 96px;
  --space-25: 100px;
  --space-26: 104px;
  --space-27: 108px;
  --space-28: 112px;
  --space-29: 116px;
  --space-30: 120px;
  --space-31: 124px;
  --space-32: 128px;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.08);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 100px;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

h4,
h5,
h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}

h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
}

h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
}

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

h5 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

h6 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.section__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-sm);
  font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-12);
}

.section__header h2 {
  margin-bottom: var(--space-4);
}

.section__desc {
  color: var(--gray-400);
  font-size: var(--text-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   4. LAYOUT & GRID
   ========================================================================== */

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container--narrow {
  max-width: 900px;
}

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 48px 0;
}

.section--lg {
  padding: 112px 0;
}

.section--gray {
  background-color: var(--off-white);
}

.grid {
  display: grid;
  gap: 32px;
}

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

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

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

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.section--overlap-next {
  padding-bottom: 0;
}

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

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  height: 80px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

/* Header Nav */
.header__nav {
  display: flex;
  align-items: center;
}

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

.nav__item {
  position: relative;
}

.nav__link {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__link:hover {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__link--active {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 1px;
}

.nav__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav__item--dropdown:hover .nav__chevron,
.dropdown--open .nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background-color: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  pointer-events: none;
}

.nav__item--dropdown:hover .dropdown,
.dropdown--open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown__inner {
  display: flex;
  flex-direction: column;
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: var(--text-sm);
  color: var(--gray-600);
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.dropdown__link:hover {
  background-color: var(--gray-50);
  color: var(--gray-900);
}

.dropdown__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gray-400);
}

.dropdown__link:hover .dropdown__icon {
  color: var(--brand-red);
}

/* Header CTA */
.header__cta {
  flex-shrink: 0;
}

/* Burger Menu */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 6px;
  position: relative;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gray-900);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.burger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger--active span:nth-child(2) {
  opacity: 0;
}

.burger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.header__nav.nav--open {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background-color: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 100px 24px 40px;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.nav--open .nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.nav--open .nav__link {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: var(--text-lg);
  border-bottom: 1px solid var(--gray-100);
}

.nav--open .dropdown {
  position: static;
  transform: none;
  box-shadow: none;
  border-radius: 0;
  min-width: auto;
  padding: 0 0 8px 16px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav--open .dropdown--open .dropdown,
.nav--open .nav__item--dropdown.dropdown--open > .dropdown {
  opacity: 1;
  visibility: visible;
  max-height: 600px;
  pointer-events: auto;
  transform: none;
  position: static;
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */

.footer {
  background-color: #6B7280;
  color: var(--white);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__desc {
  color: var(--gray-200);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
}

.footer__logo img {
  max-height: 40px;
  width: auto;
  height: auto;
}

.footer__heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a,
.footer__links li a {
  color: var(--gray-200);
  font-size: var(--text-sm);
  transition: color 0.3s ease;
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--gray-200);
  font-size: var(--text-sm);
}

.footer__contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact li a {
  color: var(--gray-200);
  transition: color 0.3s ease;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 24px 0;
  margin-top: 24px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__bottom p {
  font-size: var(--text-sm);
  color: var(--gray-400);
}

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

.footer__legal a {
  font-size: var(--text-sm);
  color: var(--gray-400);
  transition: color 0.3s ease;
}

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

/* ==========================================================================
   7. HERO SECTIONS
   ========================================================================== */

/* Homepage Hero */
.hero--home {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* overlay handled by .hero__overlay div */

.hero__content {
  max-width: 700px;
  color: var(--white);
}

.hero__badge {
  display: inline-block;
  text-transform: uppercase;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  color: var(--white);
}

.hero__title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: var(--text-6xl);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

/* Subpage Hero */
.hero--subpage {
  height: 400px;
  background-color: var(--gray-900);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero--subpage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero--subpage .container {
  position: relative;
  z-index: 2;
  flex: 1 1 100%;
}

.hero--subpage .hero__title,
.hero--subpage h1 {
  font-size: var(--text-4xl);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero--subpage .hero__subtitle {
  font-size: var(--text-lg);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.breadcrumb__separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb__current {
  color: var(--white);
}

/* ==========================================================================
   8. TRUST BAR
   ========================================================================== */

.trust-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar__items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: var(--space-8);
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-bar__number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.trust-bar__label {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-top: var(--space-1);
}

.trust-bar__badge {
  max-height: 60px;
  width: auto;
}

/* ==========================================================================
   9. CARDS & PEST GRID
   ========================================================================== */

.pest-card {
  display: block;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.pest-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pest-card:hover::after {
  transform: scaleX(1);
}

.pest-card__icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.pest-card__icon svg,
.pest-card__icon img {
  max-height: 60px;
  width: auto;
}

.pest-card__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.pest-card__text {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.6;
}

.pest-card__arrow {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pest-card:hover .pest-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.pest-card--lg {
  text-align: left;
  padding: 28px;
}

.pest-card--lg .pest-card__icon {
  height: auto;
  margin-bottom: var(--space-4);
  justify-content: flex-start;
}

.pest-card--lg .pest-card__text {
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--brand-red);
}

.service-card h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--gray-900);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Benefit Cards */
.benefit-card {
  padding: 28px;
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 114, 42, 0.1) 0%, rgba(168, 50, 121, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--brand-red);
}

.benefit-card h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.benefit-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Stat Cards */
.stat-card {
  text-align: center;
  padding: 32px 16px;
}

.stat-card__number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: var(--text-5xl);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: var(--space-2);
  display: block;
}

.stat-card__label {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* Job Cards */
.job-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

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

.job-card__content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.job-card__meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.job-card__meta span {
  font-size: var(--text-xs);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.job-card__content p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

.job-card .btn {
  flex-shrink: 0;
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-600);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--gradient-brand);
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%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='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: 10px;
  -webkit-mask-size: 10px;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

/* Hero Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero--home .hero__container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb Sep */
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 2px;
}

/* ==========================================================================
   10. BUTTONS & CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 14px 32px;
  border: none;
}

.btn--primary:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 114, 42, 0.3);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-800);
  padding: 12px 30px;
}

.btn--outline:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-red);
  padding: 0;
  border: none;
  letter-spacing: 0;
  text-transform: none;
  font-size: var(--text-base);
}

.btn--ghost::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 8px 16px;
  font-size: var(--text-xs);
}

.btn--white {
  background-color: var(--white);
  color: var(--gray-900);
  padding: 14px 32px;
  border: none;
}

.btn--white:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-brand);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  margin-top: 24px;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 12px 30px;
}

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

/* ==========================================================================
   11. FORMS
   ========================================================================== */

.form {
  max-width: 680px;
}

.form--full {
  max-width: 100%;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form__input,
.form__select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--gray-900);
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__textarea {
  width: 100%;
  height: auto;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--gray-900);
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--brand-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 114, 42, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-400);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Error State */
.form__input--error,
.form__select--error,
.form__textarea--error {
  border-color: var(--error);
}

.form__error {
  color: var(--error);
  font-size: var(--text-xs);
  margin-top: 4px;
  display: none;
}

.form__error--visible {
  display: block;
}

/* Checkbox */
.form__checkbox {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.form__checkbox input[type="checkbox"] {
  accent-color: var(--brand-red);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form__checkbox label {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}

/* ==========================================================================
   12. ACCORDION (FAQ)
   ========================================================================== */

.accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion__item {
  border-bottom: 1px solid var(--gray-100);
  border-left: 4px solid transparent;
  transition: border-left-color 0.3s ease;
}

.accordion__item--active {
  border-left-color: var(--brand-red);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  padding-left: 16px;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--gray-900);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  line-height: 1.4;
}

.accordion__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: var(--space-4);
}

.accordion__item--active .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__body {
  padding: 0 16px 24px 16px;
}

.accordion__body p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: var(--text-base);
}

/* ==========================================================================
   13. PROCESS STEPS
   ========================================================================== */

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: var(--text-5xl);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
  line-height: 1;
}

.process__step h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.process__step p {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.6;
}

.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 2px;
  background-color: var(--gray-200);
}

/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */

.testimonials {
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.testimonial__stars {
  color: #F59E0B;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
  font-size: var(--text-lg);
}

.testimonial__text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  font-size: var(--text-base);
}

.testimonial__author {
  font-weight: 600;
  color: var(--gray-900);
  font-size: var(--text-sm);
}

.testimonial__location {
  color: var(--gray-400);
  font-size: var(--text-xs);
  margin-top: var(--space-1);
}

/* ==========================================================================
   15. SERVICE AREAS / REGION
   ========================================================================== */

.region {
  text-align: center;
}

.region__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.region__city {
  padding: 8px 20px;
  background-color: var(--gray-50);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.region__city:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

/* ==========================================================================
   16. SIGN CARDS (PEST SUBPAGE)
   ========================================================================== */

.sign-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.sign-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.sign-card h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.sign-card p {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.6;
}

/* ==========================================================================
   17. RISK LIST (PEST SUBPAGE)
   ========================================================================== */

.risk-list {
  list-style: none;
}

.risk-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--gray-50);
  color: var(--gray-600);
  line-height: 1.6;
}

.risk-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

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

/* ==========================================================================
   18. UTILITY CLASSES
   ========================================================================== */

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Margin Bottom Utilities */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-7 {
  margin-bottom: var(--space-7);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-9 {
  margin-bottom: var(--space-9);
}

.mb-10 {
  margin-bottom: var(--space-10);
}

.mb-11 {
  margin-bottom: var(--space-11);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

.mb-13 {
  margin-bottom: var(--space-13);
}

.mb-14 {
  margin-bottom: var(--space-14);
}

.mb-15 {
  margin-bottom: var(--space-15);
}

.mb-16 {
  margin-bottom: var(--space-16);
}

/* Screen Reader Only */
.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;
}

/* ==========================================================================
   19. SCROLL ANIMATIONS
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="scale-up"] {
  transform: scale(0.95);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-animate].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   20. FORM LAYOUT (Express-Angebot & Landingpages)
   ========================================================================== */

.form-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.form-card__desc {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.form-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.sidebar-card__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.sidebar-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232, 114, 42, 0.1), rgba(168, 50, 121, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

.sidebar-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--gray-900);
  margin-bottom: 2px;
}

.sidebar-card__phone {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--brand-red);
  display: block;
  margin-bottom: 2px;
}

.sidebar-card__phone:hover {
  color: var(--brand-magenta);
}

.sidebar-card__text {
  font-size: var(--text-xs);
  color: var(--gray-600);
  line-height: 1.5;
}

.sidebar-card--seal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sidebar-card--seal img {
  max-height: 50px;
  width: auto;
}

/* ==========================================================================
   21. RESPONSIVE OVERRIDES
   ========================================================================== */

/* Tablet - max-width 1024px */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section {
    padding: 64px 0;
  }

  .section--lg {
    padding: 80px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile - max-width 768px */
@media (max-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

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

  .grid--3,
  .grid--4,
  .grid--5 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split__image {
    order: -1;
  }

  /* Hero */
  .hero--home {
    min-height: 70vh;
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero--subpage {
    height: 280px;
  }

  .hero--subpage .hero__title {
    font-size: var(--text-3xl);
  }

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

  /* Navigation */
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  /* Process */
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__step:not(:last-child)::after {
    display: none;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form__row {
    grid-template-columns: 1fr;
  }

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

  .form-layout__sidebar {
    position: static;
  }

  .form-card {
    padding: 24px;
  }

  /* Trust Bar */
  .trust-bar__items {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .trust-bar__item {
    flex: 0 0 calc(50% - var(--space-3));
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner h2 {
    font-size: var(--text-3xl);
  }
}

/* Small - max-width 480px */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: var(--text-3xl);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .section {
    padding: 48px 0;
  }

  .section--sm {
    padding: 32px 0;
  }

  .section--lg {
    padding: 64px 0;
  }

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

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

  .process__step:not(:last-child)::after {
    display: none;
  }

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

  .trust-bar__item {
    flex: 0 0 100%;
  }

  .hero--subpage {
    height: 240px;
  }

  .hero--subpage .hero__title {
    font-size: var(--text-2xl);
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: var(--text-sm);
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .accordion__trigger {
    font-size: var(--text-base);
    padding: 20px 0;
    padding-left: 12px;
  }

  .testimonial {
    padding: 24px;
  }

  .pest-card {
    padding: 24px;
  }
}

/* ==========================================================================
   21. PRINT STYLES
   ========================================================================== */

@media print {
  .header,
  .footer,
  .cta-banner,
  .btn,
  .header__burger {
    display: none !important;
  }

  body {
    color: #000000;
    background: #FFFFFF;
    font-size: 12pt;
    line-height: 1.5;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #000000;
    page-break-after: avoid;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  .section {
    padding: 20px 0;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .hero--home,
  .hero--subpage {
    min-height: auto;
    height: auto;
    padding: 20px 0;
    background: none;
  }

  .hero--home::before,
  .hero--subpage::before {
    display: none;
  }

  .hero__title,
  .hero__subtitle {
    color: #000000;
    text-shadow: none;
  }

  .grid,
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5 {
    display: block;
  }

  .grid > * {
    margin-bottom: 16px;
  }

  .split {
    display: block;
  }

  .text-gradient {
    -webkit-text-fill-color: #000000;
    color: #000000;
  }

  .section__label {
    -webkit-text-fill-color: #000000;
    color: #000000;
  }
}
