/* Base Reset & Variables */
:root {
  --color-primary: #1a365d;
  --color-secondary: #2c5282;
  --color-accent: #ed8936;
  --color-light: #f7fafc;
  --color-dark: #1a202c;
  --color-gray: #718096;
  --color-gray-light: #e2e8f0;
  --color-white: #ffffff;
  --color-success: #38a169;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

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

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

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition);
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  max-width: 700px;
}

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

.hero-decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #dd6b20;
  transform: translateY(-2px);
}

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

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

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

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

/* Section Styles */
.section {
  padding: 80px 0;
}

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

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

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

/* Service Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  flex: 1 1 300px;
  max-width: 380px;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

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

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

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

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-gray);
}

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

.feature-block {
  display: flex;
  align-items: center;
  gap: 50px;
}

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

.feature-content {
  flex: 1;
}

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

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

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-dark);
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* Statistics */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  text-align: center;
  color: var(--color-white);
  flex: 1 1 200px;
}

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

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

/* Testimonials */
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  flex: 1 1 320px;
  max-width: 400px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

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

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

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

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

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

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

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

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition);
}

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

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

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

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

.faq-answer-content {
  padding: 0 25px 20px;
  color: var(--color-gray);
}

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

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.process-step {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

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

/* Values Section */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 30px;
  text-align: center;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.value-card h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

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

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

.industry-item {
  background: var(--color-white);
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 250px;
  max-width: 300px;
}

.industry-item svg {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.industry-item span {
  font-weight: 500;
  color: var(--color-primary);
}

/* Trust Indicators */
.trust-section {
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

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

.trust-item svg {
  width: 30px;
  height: 30px;
  color: var(--color-success);
}

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

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.quote-author {
  color: var(--color-gray);
  font-weight: 500;
}

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

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

.cta-section p {
  margin-bottom: 25px;
  opacity: 0.95;
}

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

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

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

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
}

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

.contact-map {
  flex: 1 1 400px;
  background: var(--color-light);
  border-radius: 12px;
  padding: 40px;
}

.directions-title {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.directions-text {
  color: var(--color-gray);
  line-height: 1.8;
}

/* About Page */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1 1 500px;
}

.about-visual {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-text h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

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

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}

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

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

.team-member h3 {
  color: var(--color-primary);
  margin-bottom: 5px;
}

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

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

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gray-light);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
}

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

.timeline-content h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
}

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

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

.thank-you-content svg {
  width: 100px;
  height: 100px;
  color: var(--color-success);
  margin-bottom: 30px;
}

.thank-you-content h1 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

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

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

.legal-content h1 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.legal-content .last-updated {
  color: var(--color-gray);
  margin-bottom: 40px;
}

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

.legal-content h3 {
  color: var(--color-secondary);
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

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

.legal-content ul li {
  color: var(--color-dark);
  margin-bottom: 8px;
  list-style: disc;
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
}

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

.comparison-table tr:nth-child(even) {
  background: var(--color-light);
}

.comparison-table td {
  color: var(--color-dark);
}

.check-icon {
  color: var(--color-success);
}

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

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

.footer-col {
  flex: 1 1 200px;
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--color-gray);
  transition: var(--transition);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--color-gray);
  font-size: 0.9rem;
}

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

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

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

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

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

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.cookie-accept:hover {
  background: #dd6b20;
}

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

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

.cookie-settings {
  background: transparent;
  color: var(--color-gray);
  text-decoration: underline;
}

/* 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: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  color: var(--color-primary);
}

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

.cookie-modal-body {
  padding: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.cookie-category h4 {
  color: var(--color-primary);
}

.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(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

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

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

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

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

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

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-modal-footer button {
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.save-preferences {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.save-preferences:hover {
  background: var(--color-secondary);
}

.accept-all {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
}

.accept-all:hover {
  background: #dd6b20;
}

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-light) 0%, rgba(237,137,54,0.1) 100%);
  border-radius: 12px;
  padding: 40px;
  margin: 30px 0;
}

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

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

/* Info Box */
.info-box {
  background: var(--color-light);
  border-left: 4px solid var(--color-accent);
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.info-box h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

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

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  background: var(--color-light);
}

.breadcrumb-list {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-list a {
  color: var(--color-gray);
}

.breadcrumb-list a:hover {
  color: var(--color-primary);
}

.breadcrumb-list span {
  color: var(--color-dark);
}

.breadcrumb-separator {
  color: var(--color-gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-gray-light);
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .hero {
    padding: 60px 0;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 50px 0;
  }

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

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

  .stat-number {
    font-size: 2.2rem;
  }

  .quote-text {
    font-size: 1.3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .service-card,
  .testimonial-card,
  .value-card {
    padding: 25px 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}
