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

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-secondary: #0f172a;
  --color-accent: #f59e0b;
  --color-light: #f8fafc;
  --color-gray: #64748b;
  --color-gray-light: #e2e8f0;
  --color-white: #ffffff;
  --color-success: #10b981;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-secondary);
  background-color: var(--color-white);
}

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

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

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

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

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: none;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: var(--color-secondary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

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

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

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

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

.mobile-nav ul li a {
  display: block;
  padding: 10px 0;
  color: var(--color-secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav ul li a:hover {
  color: var(--color-primary);
}

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

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.hero-stat {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: var(--radius-md);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

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

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

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

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

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

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

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

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

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

.section-title {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.section-subtitle {
  color: var(--color-gray);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

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

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

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

.section-dark .section-subtitle {
  color: var(--color-gray-light);
}

/* Cards */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-secondary);
}

.card p {
  color: var(--color-gray);
  line-height: 1.7;
}

.card-price {
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Service Card */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.service-card p {
  color: var(--color-gray);
  margin-bottom: 15px;
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}

.feature-block:nth-child(even) {
  flex-direction: column;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.feature-content p {
  color: var(--color-gray);
  margin-bottom: 15px;
}

.feature-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Statistics */
.stats-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 50px 20px;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

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

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

.testimonial {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: 20px;
  padding-top: 20px;
  line-height: 1.8;
}

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

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

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--color-secondary);
}

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

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

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--color-gray);
  line-height: 1.7;
}

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

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

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

.step-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.step-content p {
  color: var(--color-gray);
}

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

.industry-tag {
  background: var(--color-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.industry-tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

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

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

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

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

.value-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.value-content p {
  color: var(--color-gray);
}

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

.contact-info {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--color-secondary);
}

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

.contact-item:last-child {
  margin-bottom: 0;
}

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

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.contact-details h4 {
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
  color: var(--color-gray);
  font-size: 0.95rem;
}

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

.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.cta-section p {
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: var(--color-secondary);
  color: var(--color-gray-light);
  padding: 50px 20px 30px;
}

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

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

.footer-section p {
  line-height: 1.7;
  margin-bottom: 10px;
}

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

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

.footer-section ul li a {
  color: var(--color-gray-light);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--color-white);
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 50px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

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

.legal-content h2 {
  font-size: 1.4rem;
  margin: 35px 0 15px;
  color: var(--color-secondary);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 25px 0 12px;
  color: var(--color-secondary);
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--color-gray);
  line-height: 1.8;
}

.legal-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content ul li {
  margin-bottom: 10px;
  color: var(--color-gray);
  line-height: 1.7;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 80px 20px;
}

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

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--color-white);
}

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

.thank-you-content p {
  color: var(--color-gray);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
}

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

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

.cookie-btn-settings {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.cookie-btn-settings:hover {
  background: rgba(255,255,255,0.1);
}

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

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

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

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

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

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

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  padding: 5px;
}

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

.cookie-option {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

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

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

.cookie-option h4 {
  font-size: 1.05rem;
  color: var(--color-secondary);
}

.cookie-option p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.cookie-modal-footer .btn {
  flex: 1;
  min-width: 140px;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--color-success);
}

.benefit-item p {
  color: var(--color-gray);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

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

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

/* Milestones */
.milestones-container {
  position: relative;
  padding-left: 30px;
}

.milestones-container::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
}

.milestone {
  position: relative;
  padding-bottom: 30px;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.milestone-year {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.milestone h4 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.milestone p {
  color: var(--color-gray);
}

/* Quote Section */
.quote-section {
  background: var(--color-light);
  padding: 60px 20px;
  text-align: center;
}

.quote-text {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-secondary);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

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

/* Highlighted Panel */
.highlighted-panel {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d97706 100%);
  color: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.highlighted-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.highlighted-panel p {
  opacity: 0.95;
  margin-bottom: 25px;
}

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

.team-member {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

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

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

.team-member h4 {
  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-member p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
  }

  .hero-stat {
    flex: 1;
    max-width: 200px;
  }

  nav ul {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

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

  .cards-grid .card {
    flex: 1 1 calc(50% - 15px);
  }

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

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

  .stats-grid {
    flex-direction: row;
    justify-content: space-around;
  }

  .testimonials-container {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

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

  .contact-info {
    flex: 1;
  }

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

  .footer-section {
    flex: 1;
  }

  .cookie-content {
    flex-direction: row;
    text-align: left;
  }

  .cookie-content p {
    flex: 1;
  }

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

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

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

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

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

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

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

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

  .cards-grid .card {
    flex: 1 1 calc(33.333% - 20px);
  }

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

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

  html {
    scroll-behavior: auto;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-question:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

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

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