/* Base Reset & Variables */
:root {
  --color-primary: #1a3a52;
  --color-secondary: #e8a54b;
  --color-accent: #2d5a7b;
  --color-dark: #0f2433;
  --color-light: #f7f9fb;
  --color-white: #ffffff;
  --color-gray: #6b7c8a;
  --color-gray-light: #d1d9df;
  --color-success: #3a8c5c;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 58, 82, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 58, 82, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

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

p { margin-bottom: 1rem; }

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

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

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

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

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

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

.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);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

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

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

.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
}

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

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

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

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
  margin: 3px 0;
}

.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(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

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

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.hero h1 {
  font-size: 2.25rem;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero-visual svg {
  max-width: 100%;
  width: 400px;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

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

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

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-gray);
}

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

/* Company Overview */
.overview-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.overview-text {
  flex: 1;
}

.overview-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* Services Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

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

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

.service-card h3 {
  margin-bottom: 0.75rem;
}

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

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--color-gray);
  margin: 0;
}

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

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

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

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

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

.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-gray);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

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

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.industry-item {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 150px;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.industry-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.industry-item span {
  font-weight: 500;
}

/* Philosophy */
.philosophy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-text {
  flex: 1;
}

.philosophy-text blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-accent);
  border-left: 4px solid var(--color-secondary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-tag {
  padding: 0.5rem 1rem;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-gray);
}

/* Statistics Bar */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 0;
}

.stat-block {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-block .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
}

.section-dark .stat-block .stat-number {
  color: var(--color-secondary);
}

.stat-block .stat-label {
  font-size: 1rem;
  color: var(--color-gray);
}

.section-dark .stat-block .stat-label {
  color: var(--color-gray-light);
}

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

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  color: var(--color-gray-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

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

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.contact-map-placeholder {
  flex: 1;
  min-height: 300px;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.directions-box {
  max-width: 400px;
  text-align: center;
}

.directions-box svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.directions-box h3 {
  margin-bottom: 1rem;
}

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

/* Working Hours */
.hours-list {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:last-child {
  font-weight: 500;
}

/* Case Examples */
.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.case-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.case-visual {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-visual svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.case-content {
  padding: 1.5rem;
}

.case-content h3 {
  margin-bottom: 0.5rem;
}

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

.case-stats {
  display: flex;
  gap: 1.5rem;
}

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

.case-stat strong {
  display: block;
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.case-stat span {
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* Milestones */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--color-gray-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  transform: translateX(-5px);
}

.timeline-year {
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--color-gray);
  margin: 0;
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

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

.member-avatar svg {
  width: 40px;
  height: 40px;
}

.team-member h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-member .role {
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  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);
}

/* Benefits */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.benefit-card {
  flex: 1 1 100%;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--color-gray);
  margin: 0;
}

/* Legal Pages */
.legal-content {
  padding: 6rem 0 4rem;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

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

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

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.thank-you h1 {
  margin-bottom: 1rem;
}

.thank-you p {
  color: var(--color-gray);
  margin-bottom: 2rem;
}

/* Trust Indicators */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  min-width: 150px;
}

.trust-badge svg {
  width: 48px;
  height: 48px;
}

.trust-badge span {
  font-weight: 500;
  text-align: center;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--color-gray-light);
  font-size: 0.875rem;
}

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

.footer-col p {
  color: var(--color-gray-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-logo {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-gray-light);
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

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

.cookie-btn-accept:hover {
  background: #d4952f;
}

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

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

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

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

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

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

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-close {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-option {
  padding: 1rem 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: 0.5rem;
}

.cookie-option h3 {
  font-size: 1rem;
  margin: 0;
}

.cookie-option p {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

.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: 24px;
  transition: var(--transition);
}

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

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

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

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

.modal-footer {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.modal-footer .btn {
  flex: 1;
}

/* Page Header */
.page-header {
  padding: 8rem 0 3rem;
  background: var(--color-light);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-gray);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

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

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

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #d4952f 100%);
  color: var(--color-dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.highlight-panel h2,
.highlight-panel h3 {
  color: var(--color-dark);
}

.highlight-panel p {
  margin-bottom: 1.5rem;
}

/* Alternating Content */
.alternating-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.block-visual svg {
  width: 100px;
  height: 100px;
  opacity: 0.5;
}

.block-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Company Info Box */
.info-box {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.info-box h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

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

/* Responsive Styles */
@media (min-width: 576px) {
  .service-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .benefit-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .team-member {
    flex: 1 1 calc(50% - 0.75rem);
  }

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

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

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

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

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .section {
    padding: 5rem 0;
  }

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

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

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

  .testimonial-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .philosophy-content {
    flex-direction: row;
  }

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

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

  .case-card {
    flex: 1 1 calc(50% - 1rem);
  }

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

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

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

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

  .cookie-content p {
    flex: 1;
  }
}

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

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

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

  .team-member {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .benefit-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .footer-col {
    flex: 1 1 calc(25% - 1.5rem);
  }

  .testimonial-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

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

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

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }

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

  .process-step {
    flex: 1 1 calc(25% - 1.5rem);
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 1rem;
  }
}
