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

:root {
  --color-primary: #1a1a2e;
  --color-secondary: #16213e;
  --color-accent: #4ecdc4;
  --color-accent-hover: #3db9b1;
  --color-highlight: #ff6b6b;
  --color-light: #f8f9fa;
  --color-muted: #6c757d;
  --color-text: #2d3436;
  --color-text-light: #636e72;
  --color-border: #dee2e6;
  --color-card: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
}

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

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

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

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

/* Header and Navigation */
.header {
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

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

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

.nav {
  display: none;
}

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

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

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

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

.nav-link:hover {
  color: var(--color-accent);
}

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-card);
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1.1rem;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.mobile-nav-link:hover {
  background: var(--color-light);
  color: var(--color-accent);
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
}

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

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-text {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

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

.hero-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

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

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

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

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.section-alt {
  background: var(--color-card);
}

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

.section-header {
  margin-bottom: 40px;
}

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

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-dark .section-title {
  color: white;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 100%;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.card-text {
  color: var(--color-text-light);
  line-height: 1.7;
}

.card-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 16px;
}

/* Feature Blocks */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--color-text-light);
}

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

.stat-item {
  flex: 1 1 140px;
  text-align: center;
  padding: 24px;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

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

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial {
  flex: 1 1 100%;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial-info strong {
  display: block;
  color: var(--color-primary);
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Quote Section */
.quote-section {
  padding: 80px 0;
  background: var(--color-secondary);
  color: white;
  text-align: center;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.quote-author {
  color: var(--color-accent);
  font-weight: 600;
}

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

.process-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

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

.process-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.process-content p {
  color: var(--color-text-light);
}

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

.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

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

.industry-tag {
  padding: 12px 24px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  font-weight: 500;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.industry-tag:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

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

.value-item {
  flex: 1 1 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.value-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

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

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

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

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-light);
}

.timeline-year {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.timeline-title {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-text {
  color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 32px;
}

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

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

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

.contact-info {
  flex: 1 1 100%;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact-details p {
  color: var(--color-text-light);
}

.contact-details a {
  color: var(--color-accent);
}

/* Page Header */
.page-header {
  padding: 60px 0;
  background: var(--color-primary);
  color: white;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
}

/* About Content */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-content {
  line-height: 1.8;
}

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

.about-content p {
  margin-bottom: 16px;
  color: var(--color-text);
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-member {
  flex: 1 1 100%;
  text-align: center;
  padding: 32px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.team-avatar svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.team-role {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Service Comparison */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.thank-you-content h1 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.thank-you-content p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 32px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 24px 0 12px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-accent);
}

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

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

.footer-col {
  flex: 1 1 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-text {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-card);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cookie-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

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

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

.cookie-btn-reject {
  background: var(--color-light);
  color: var(--color-text);
}

.cookie-btn-reject:hover {
  background: var(--color-border);
}

.cookie-btn-settings {
  background: none;
  color: var(--color-text-light);
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: var(--color-text);
}

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

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

.cookie-modal-content {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
}

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

.cookie-modal-header h2 {
  font-size: 1.3rem;
  color: var(--color-primary);
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  background: var(--color-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cookie-modal-close:hover {
  background: var(--color-border);
}

.cookie-modal-close svg {
  width: 16px;
  height: 16px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

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

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

.cookie-category-title {
  font-weight: 600;
  color: var(--color-primary);
}

.cookie-toggle {
  position: relative;
  width: 48px;
  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(--color-border);
  border-radius: 26px;
  transition: var(--transition);
}

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

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

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

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

.cookie-category-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

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

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}

.highlight-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.highlight-panel p {
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Alternating Blocks */
.alt-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

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

.alt-block-content h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.alt-block-content p {
  color: var(--color-text-light);
  line-height: 1.8;
}

.alt-block-visual {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-block-visual svg {
  width: 120px;
  height: 120px;
}

/* Directions */
.directions-content {
  background: var(--color-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.directions-content h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.directions-content p {
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  z-index: 10001;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Media Queries */
@media (min-width: 576px) {
  .card {
    flex: 1 1 calc(50% - 12px);
  }

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

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

  .team-member {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-col {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 100px 0 120px;
  }

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

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

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

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

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

  .alt-block:nth-child(even) {
    flex-direction: row-reverse;
  }

  .alt-block-content,
  .alt-block-visual {
    flex: 1;
  }

  .contact-grid {
    flex-wrap: nowrap;
  }

  .contact-info {
    flex: 1 1 auto;
  }
}

@media (min-width: 992px) {
  .hero-content {
    max-width: 60%;
  }

  .footer-col {
    flex: 1 1 auto;
  }

  .footer-col:first-child {
    flex: 2 1 auto;
  }

  .team-member {
    flex: 1 1 calc(25% - 18px);
  }
}
