/* ===================================
   INDUSTRIAL MODERN DESIGN SYSTEM
   PureGlow Ingolstadt
   ================================= */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #0f0f0f;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #d4d4d4;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 36px;
  border-left: 4px solid #b8956a;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
  color: #b8956a;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #c0c0c0;
}

a {
  color: #b8956a;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #d4af7a;
  text-decoration: underline;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #c0c0c0;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #d4d4d4;
  font-weight: 700;
}

/* CONTAINER SYSTEM */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER - INDUSTRIAL AESTHETIC */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-bottom: 2px solid #333;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.logo:hover {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #c0c0c0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #b8956a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #b8956a;
  text-decoration: none;
  border-color: #333;
}

.main-nav a:hover::after {
  width: 80%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1a1a1a;
  border: 2px solid #b8956a;
  color: #b8956a;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.mobile-menu-toggle:hover {
  background: #b8956a;
  color: #1a1a1a;
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  transition: right 0.4s ease;
  border-left: 2px solid #333;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #b8956a;
  color: #b8956a;
  font-size: 32px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-menu-close:hover {
  background: #b8956a;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #c0c0c0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav a:hover {
  color: #b8956a;
  border-left-color: #b8956a;
  background: rgba(184, 149, 106, 0.1);
  text-decoration: none;
  padding-left: 24px;
}

/* HERO SECTION - INDUSTRIAL MODERN */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid #333;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(184, 149, 106, 0.02) 10px,
    rgba(184, 149, 106, 0.02) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #d4d4d4;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 20px;
  color: #b8956a;
  margin-bottom: 32px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  color: #888;
  font-size: 14px;
  font-style: italic;
  margin-top: 24px;
}

/* BUTTONS - INDUSTRIAL STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #b8956a;
  color: #0f0f0f;
  border-color: #b8956a;
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
  background: #d4af7a;
  border-color: #d4af7a;
  color: #0f0f0f;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 106, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #b8956a;
  border-color: #b8956a;
}

.btn-secondary:hover {
  background: #b8956a;
  color: #0f0f0f;
  text-decoration: none;
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.services, .benefits, .testimonials, .location, .cta-final, .content, .philosophy, .cta {
  background: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #888;
  max-width: 700px;
  margin: 0 auto 40px;
}

.services h2, .benefits h2, .testimonials h2, .location h2, .cta-final h2, .cta h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* SERVICE CARDS - FLEXBOX GRID */
.service-grid, .benefits-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card, .benefit-item {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 32px;
  border: 1px solid #333;
  border-left: 4px solid #b8956a;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #b8956a 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover, .benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.2);
  border-color: #b8956a;
}

.service-card h3, .benefit-item h3 {
  color: #d4d4d4;
  margin-bottom: 16px;
}

.service-card p, .benefit-item p {
  color: #c0c0c0;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #b8956a;
  margin-top: 16px;
}

/* TESTIMONIALS - DARK TEXT ON LIGHT BACKGROUND */
.testimonial-card {
  background: #f4f0eb;
  padding: 32px;
  border-left: 4px solid #b8956a;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card p {
  color: #2a2a2a;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #2D5F4F;
  font-weight: 700;
  font-style: normal;
  text-align: right;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 60px 20px 40px;
  border-bottom: 2px solid #333;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #888;
}

.breadcrumb a {
  color: #b8956a;
}

.breadcrumb a:hover {
  color: #d4af7a;
}

.page-hero h1 {
  text-align: center;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  text-align: center;
  font-size: 18px;
  color: #888;
  max-width: 700px;
  margin: 0 auto;
}

/* SERVICE DETAILS */
.services-detailed {
  padding: 60px 20px;
  background: #1a1a1a;
  margin-bottom: 60px;
  border-top: 1px solid #333;
}

.service-detail {
  background: #0f0f0f;
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid #333;
  border-left: 4px solid #b8956a;
  position: relative;
}

.service-detail h3 {
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 24px;
}

.service-detail ul li {
  padding-left: 24px;
  position: relative;
  color: #c0c0c0;
}

.service-detail ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #b8956a;
  font-weight: 700;
}

/* CONTENT SECTIONS */
.text-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}

.text-section:last-child {
  border-bottom: none;
}

.text-section h2 {
  margin-bottom: 24px;
}

.text-section h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-item {
  background: #0f0f0f;
  padding: 24px;
  border: 1px solid #333;
  border-top: 3px solid #b8956a;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  margin-bottom: 20px;
}

.value-item h3 {
  margin-bottom: 12px;
}

.value-item p {
  color: #c0c0c0;
}

/* CONTACT PAGE */
.contact-section {
  padding: 60px 20px;
  background: #1a1a1a;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info, .contact-form-wrapper {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}

.info-block {
  margin-bottom: 32px;
  padding: 24px;
  background: #0f0f0f;
  border-left: 4px solid #b8956a;
}

.info-block h3 {
  margin-bottom: 12px;
}

.info-block p {
  color: #c0c0c0;
}

.info-block .note {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 8px;
}

.form-placeholder {
  background: #0f0f0f;
  padding: 32px;
  border: 2px dashed #333;
}

.form-note {
  font-weight: 700;
  color: #b8956a;
  margin-bottom: 16px;
}

.form-placeholder ul {
  margin-bottom: 24px;
}

.form-action {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  text-align: center;
}

.thank-you-content h1 {
  margin-bottom: 24px;
}

.thank-you-content .subtitle {
  font-size: 18px;
  color: #888;
  margin-bottom: 32px;
}

.next-steps {
  background: #0f0f0f;
  padding: 32px;
  margin: 40px auto;
  max-width: 600px;
  border: 1px solid #333;
  border-top: 3px solid #b8956a;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ol {
  margin-bottom: 24px;
}

.next-steps .note {
  font-size: 14px;
  color: #888;
  font-style: italic;
  text-align: center;
}

.content-suggestions {
  padding: 60px 20px;
  background: #1a1a1a;
}

.content-suggestions h2 {
  text-align: center;
  margin-bottom: 40px;
}

.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.suggestion-card {
  background: #0f0f0f;
  padding: 32px;
  text-align: center;
  border: 1px solid #333;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  margin-bottom: 12px;
}

.suggestion-card p {
  margin-bottom: 24px;
}

.contact-alternative {
  padding: 60px 20px;
  background: #0f0f0f;
  text-align: center;
  border-top: 1px solid #333;
}

.contact-alternative h2 {
  margin-bottom: 24px;
}

.contact-alternative p {
  line-height: 2;
}

/* LOCATION INFO */
.location {
  padding: 60px 20px;
  background: #1a1a1a;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.address-block, .hours-block, .contact-block {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: #0f0f0f;
  padding: 24px;
  border-left: 4px solid #b8956a;
}

.address-block h3, .hours-block h3, .contact-block h3 {
  margin-bottom: 12px;
}

/* CTA SECTIONS */
.cta-final, .cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

.cta-final h2, .cta h2 {
  margin-bottom: 16px;
}

.cta-final p, .cta p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 20px;
  background: #1a1a1a;
}

.legal-content {
  max-width: 800px;
  margin: 40px auto;
  background: #0f0f0f;
  padding: 40px;
  border: 1px solid #333;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

/* FOOTER - INDUSTRIAL */
footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #000 100%);
  padding: 60px 20px 30px;
  border-top: 3px solid #333;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-about, .footer-nav, .footer-legal {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0.8);
}

.footer-about p {
  color: #888;
  font-size: 14px;
}

footer h4 {
  color: #b8956a;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-nav a, .footer-legal a {
  display: block;
  color: #888;
  margin-bottom: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover, .footer-legal a:hover {
  color: #b8956a;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  z-index: 1998;
  border-top: 2px solid #b8956a;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 300px;
  color: #c0c0c0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-btn-accept {
  background: #b8956a;
  color: #0f0f0f;
  border-color: #b8956a;
}

.cookie-btn-accept:hover {
  background: #d4af7a;
  border-color: #d4af7a;
}

.cookie-btn-reject {
  color: #888;
  border-color: #333;
}

.cookie-btn-reject:hover {
  color: #c0c0c0;
  border-color: #666;
}

.cookie-btn-settings {
  color: #b8956a;
  border-color: #b8956a;
}

.cookie-btn-settings:hover {
  background: #b8956a;
  color: #0f0f0f;
}

/* COOKIE SETTINGS MODAL */
#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 2px solid #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #b8956a;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 1;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #d4af7a;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
  border-left: none;
  padding-left: 0;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #333;
}

.cookie-category h3 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #888;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 24px;
  appearance: none;
  background: #333;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #b8956a;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 29px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .service-card, .benefit-item, .testimonial-card, .value-item {
    flex: 1 1 100%;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  .footer-about, .footer-nav, .footer-legal {
    flex: 1 1 100%;
  }
  
  .contact-info, .contact-form-wrapper {
    flex: 1 1 100%;
  }
  
  .address-block, .hours-block, .contact-block {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .benefit-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .suggestion-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card, .benefit-item, .testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent-banner {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}