:root {
  --primary: #1a5276;
  --primary-dark: #0e3a54;
  --secondary: #48c9b0;
  --secondary-light: #7ee8d4;
  --accent: #f39c12;
  --dark: #1c2833;
  --light: #f8f9fa;
  --gray: #5d6d7e;
  --gray-light: #d5d8dc;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(26, 82, 118, 0.12);
  --shadow-hover: 0 8px 30px rgba(26, 82, 118, 0.2);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo svg {
  width: 42px;
  height: 42px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-desktop a {
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  transform: translateX(100%);
  transition: var(--transition);
  z-index: 999;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile a {
  display: block;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--light);
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--primary);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--secondary-light);
  color: var(--dark);
}

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

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

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.hero h1 {
  font-size: 2.25rem;
  color: var(--dark);
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
}

.hero-feature svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

/* Sections */
section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header p {
  font-size: 1.125rem;
}

.section-label {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.bg-light {
  background: var(--light);
}

.bg-primary {
  background: var(--primary);
}

.bg-primary h2,
.bg-primary h3,
.bg-primary p,
.bg-primary .section-label {
  color: var(--white);
}

/* Service Cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 16px;
}

.service-price {
  display: inline-block;
  background: var(--light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

/* Features */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.feature-content h4 {
  margin-bottom: 8px;
}

/* Statistics */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 140px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-light);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info strong {
  display: block;
  color: var(--dark);
}

.author-info span {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Process */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  display: flex;
  gap: 20px;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-content {
  flex: 1;
  padding-bottom: 32px;
  border-left: 2px dashed var(--gray-light);
  padding-left: 20px;
  margin-left: -35px;
}

.process-step:last-child .step-content {
  border-left: none;
  padding-bottom: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

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

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--gray);
}

/* Values */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}

.value-card svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--primary);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border: 4px solid var(--secondary);
  border-radius: 50%;
}

.timeline-year {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 500;
}

.industry-tag svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

/* Trust Indicators */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  flex: 1 1 200px;
  max-width: 280px;
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.trust-item strong {
  color: var(--dark);
  text-align: center;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-item svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.contact-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
}

/* Map Placeholder */
.map-section {
  background: var(--light);
  padding: 48px 24px;
  border-radius: var(--radius);
  text-align: center;
}

.map-section svg {
  width: 80px;
  height: 80px;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Legal Pages */
.legal-content {
  padding-top: 100px;
  padding-bottom: 60px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--gray);
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* Thank You Page */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.thank-you-content {
  max-width: 500px;
}

.thank-you svg {
  width: 100px;
  height: 100px;
  color: var(--secondary);
  margin-bottom: 24px;
}

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

.thank-you p {
  font-size: 1.125rem;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

.cookie-content a {
  color: var(--secondary);
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-header h3 {
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--dark);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

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

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

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

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

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

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

.cookie-option-info h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.cookie-option-info p {
  font-size: 0.875rem;
  margin: 0;
}

.modal-footer {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--light);
}

/* Alternating Content */
.alternating-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.alternating-block:last-child {
  margin-bottom: 0;
}

.alternating-content {
  order: 2;
}

.alternating-visual {
  order: 1;
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alternating-visual svg {
  width: 120px;
  height: 120px;
  color: var(--primary);
}

/* Panel Highlight */
.highlight-panel {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
}

.highlight-panel h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 24px;
}

/* Icon Section */
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.icon-item {
  flex: 1 1 140px;
  max-width: 180px;
  text-align: center;
  padding: 24px 16px;
}

.icon-item svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 12px;
}

.icon-item span {
  display: block;
  font-weight: 500;
  color: var(--dark);
}

/* Quote Section */
.quote-section {
  background: var(--light);
  padding: 60px 24px;
  text-align: center;
  border-left: 4px solid var(--secondary);
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.quote-section cite {
  color: var(--gray);
  font-style: normal;
}

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-avatar svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

/* Desktop Styles */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }

  section { padding: 80px 0; }

  .menu-toggle { display: none; }
  .nav-mobile { display: none; }

  .nav-desktop {
    display: block;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: row;
    gap: 16px;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .features-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 12px);
  }

  .testimonials-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-card {
    flex: 1 1 calc(50% - 12px);
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-info {
    flex: 1;
  }

  .map-section {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    flex: 1;
    max-width: 300px;
  }

  .footer-section {
    flex: 0 0 auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }

  .alternating-block {
    flex-direction: row;
    align-items: center;
  }

  .alternating-content {
    flex: 1;
    order: 1;
  }

  .alternating-visual {
    flex: 1;
    order: 2;
    min-height: 300px;
  }

  .alternating-block:nth-child(even) .alternating-content {
    order: 2;
  }

  .alternating-block:nth-child(even) .alternating-visual {
    order: 1;
  }

  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 16px);
  }

  .step-content {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }

  section { padding: 100px 0; }

  .hero h1 {
    font-size: 3.5rem;
  }

  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .process-step {
    flex: 1 1 calc(25% - 18px);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
