:root {
  /* Color System - Bold Construction Palette */
  --primary: #1a1a1a;
  --primary-dark: #000000;
  --secondary: #ff6b35;
  --secondary-dark: #e5521a;
  --accent: #f7931e;
  --accent-light: #ffa940;
  
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-dark: #1a1a1a;
  --bg-overlay: rgba(26, 26, 26, 0.92);
  
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #757575;
  --text-inverse: #ffffff;
  
  --border-color: #e0e0e0;
  --border-dark: #1a1a1a;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  
  /* Border Radius Scale */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  /* Shadow System - Consistent Light Source (top-left) */
  --shadow-sm: 2px 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 3px 3px 12px rgba(0, 0, 0, 0.1),
               1px 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 4px 4px 20px rgba(0, 0, 0, 0.12),
               2px 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-xl: 6px 6px 30px rgba(0, 0, 0, 0.15),
               3px 3px 12px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-primary: 'Nunito Sans', sans-serif;
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--secondary-dark);
}

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

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 3px solid var(--border-dark);
  transition: transform var(--transition-base);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: opacity var(--transition-base);
  width: 200px;
}

.logo:hover {
  opacity: 0.8;
  color: var(--text-primary);
}

.logo svg {
  height: 40px;
  width: auto;
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  transition: all var(--transition-base);
}

.lang-switcher:hover {
  border-color: var(--border-dark);
}

.lang-btn {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition-base);
  letter-spacing: 0.05em;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--text-primary);
}

.lang-divider {
  color: var(--border-color);
}

.menu-toggle {
  background: var(--primary);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.menu-toggle:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Side Drawer Navigation */
.side-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1100;
  padding: var(--space-xl) var(--space-md);
  transition: left var(--transition-slow);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.side-drawer.active {
  left: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.main-nav {
  list-style: none;
}

.main-nav li {
  margin-bottom: var(--space-sm);
}

.main-nav a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-inverse);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-base);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  padding-left: var(--space-sm);
}

/* Hero Section - Diagonal Overlay */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--primary);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Button System */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--secondary);
  color: var(--text-inverse);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  color: var(--text-inverse);
}

.btn-secondary {
  background: transparent;
  color: var(--text-inverse);
  border: 2px solid var(--text-inverse);
}

.btn-secondary:hover {
  background: var(--text-inverse);
  color: var(--primary);
}

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

.btn-accent:hover {
  background: var(--accent-light);
  color: var(--primary);
}

/* Section Styling */
.section {
  padding: var(--space-3xl) var(--space-md);
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-inverse);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.section-accent {
  background: var(--bg-secondary);
  border-top: 4px solid var(--border-dark);
  border-bottom: 4px solid var(--border-dark);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-sm);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Card Components */
.card {
  background: var(--bg-primary);
  border: 3px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.card p {
  font-size: 0.9375rem;
}

/* Feature Cards with Image */
.feature-card {
  background: var(--bg-primary);
  border: 3px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.feature-card:hover .feature-card-image img {
  transform: scale(1.05);
}

.feature-card-content {
  padding: var(--space-lg);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

/* Tabbed Content Section */
.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-bottom: 3px solid var(--border-dark);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-button {
  padding: var(--space-sm) var(--space-md);
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--text-secondary);
  white-space: nowrap;
  margin-bottom: -3px;
}

.tab-button:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.tab-button.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.tab-content {
  display: none;
  animation: fadeIn var(--transition-slow);
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel {
  background: var(--bg-primary);
  border: 3px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

/* Customer Journey Section */
.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  position: relative;
}

.journey-step {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}

.journey-number {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto var(--space-md);
  border: 4px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.journey-step:hover .journey-number {
  transform: scale(1.1);
  background: var(--accent);
}

.journey-step h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.journey-step p {
  font-size: 0.9375rem;
}

/* Split Layout with Overlap */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}

.split-content {
  padding: var(--space-lg);
  position: relative;
  z-index: 2;
}

.split-image {
  position: relative;
  height: 500px;
  border: 4px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.overlap-card {
  position: absolute;
  background: var(--bg-primary);
  border: 3px solid var(--border-dark);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 320px;
  z-index: 3;
}

.overlap-left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.overlap-right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

/* Stats/Highlight Boxes */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-box {
  background: var(--bg-primary);
  border: 3px solid var(--border-dark);
  padding: var(--space-lg);
  text-align: center;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 3px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.contact-item i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 2px;
}

.contact-item-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-item-content strong {
  display: block;
  color: var(--text-inverse);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.contact-form {
  background: var(--bg-primary);
  padding: var(--space-xl);
  border: 3px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  font-family: var(--font-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  cursor: pointer;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

/* Map Container */
.map-container {
  margin-top: var(--space-xl);
  border: 4px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-primary);
  border: 3px solid var(--border-dark);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-base);
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-question i {
  font-size: 1.25rem;
  transition: transform var(--transition-base);
  color: var(--secondary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-md) var(--space-md);
}

/* Footer with Accent Bar */
.site-footer {
  position: relative;
}

.footer-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
}

.footer-main {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto var(--space-xl);
}

.footer-column h4 {
  color: var(--text-inverse);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  font-weight: 800;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: var(--line-height-relaxed);
}

.footer-column a {
  display: block;
  margin-bottom: var(--space-xs);
  transition: all var(--transition-base);
}

.footer-column a:hover {
  color: var(--accent);
  padding-left: var(--space-xs);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--space-md);
  z-index: 2000;
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-xl);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid var(--text-inverse);
  background: transparent;
  color: var(--text-inverse);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.cookie-btn:hover {
  background: var(--text-inverse);
  color: var(--primary);
}

.cookie-btn-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.cookie-modal-content {
  background: var(--bg-primary);
  max-width: 600px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--border-dark);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: var(--space-lg);
  border-bottom: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color var(--transition-base);
  padding: 0;
  width: 32px;
  height: 32px;
}

.cookie-modal-close:hover {
  color: var(--text-primary);
}

.cookie-modal-body {
  padding: var(--space-lg);
}

.cookie-category {
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.cookie-category h4 {
  margin: 0;
  font-size: 1.125rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border-color);
  border-radius: 26px;
  transition: var(--transition-base);
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--secondary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: var(--space-lg);
  border-top: 2px solid var(--border-color);
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-content h1 {
  margin-bottom: var(--space-sm);
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Thank You Page */
.thanks-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--border-dark);
  box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .split-image {
    height: 400px;
  }
  
  .overlap-card {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: var(--space-md);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .hero-overlay {
    width: 60%;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }
  
  .section {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .header-container {
    padding: var(--space-sm);
  }
  
  .hero {
    margin-top: 64px;
  }
  
  .hero-overlay {
    width: 100%;
    clip-path: none;
  }
  
  .hero-background {
    opacity: 0.3;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .tabs-nav {
    flex-wrap: nowrap;
  }
  
  .tab-panel {
    padding: var(--space-md);
  }
  
  .journey-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .side-drawer {
    width: 280px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }
  
  .logo svg {
    height: 32px;
  }
  
  .lang-switcher {
    padding: 0.375rem 0.75rem;
  }
  
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  
  .card,
  .feature-card-content {
    padding: var(--space-md);
  }
  
  .contact-form {
    padding: var(--space-md);
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .cookie-consent,
  .menu-toggle,
  .cta-group,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}

/* Accessibility */
.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;
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}