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

:root {
  --primary: #1a5f7a;
  --primary-dark: #134b61;
  --secondary: #57c5b6;
  --accent: #159895;
  --text: #2d3436;
  --text-light: #636e72;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-dark: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

.btn-secondary:hover {
  background: var(--accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 650px;
  position: relative;
  z-index: 1;
}

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

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
}

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

.hero .btn-primary:hover {
  background: var(--accent);
}

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

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

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

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

/* Service Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

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

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

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

/* Feature Blocks */
.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.features-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1 1 400px;
}

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

.feature-content h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
  color: var(--text-light);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
}

.feature-list li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 11px;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
}

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

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

.stat-item {
  text-align: center;
  min-width: 150px;
}

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

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

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 5rem;
  color: var(--bg-alt);
  font-family: Georgia, serif;
  line-height: 1;
}

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

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

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

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

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

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

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

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

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--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, padding 0.3s ease;
}

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

.faq-answer p {
  padding: 0 25px 20px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  counter-reset: step;
}

.process-step {
  flex: 1 1 calc(25% - 25px);
  min-width: 220px;
  text-align: center;
  position: relative;
}

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

.process-step h4 {
  margin-bottom: 10px;
}

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

.value-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

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

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

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

.cta-section p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.cta-section .btn:hover {
  background: var(--bg-alt);
}

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

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

.contact-details {
  flex: 1 1 350px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-item h4 {
  margin-bottom: 5px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-dark);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--primary);
  font-weight: 500;
}

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

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

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

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

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

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  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(--text);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: none;
}

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

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

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

.cookie-text p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

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

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

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

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

.btn-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

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

.btn-settings {
  background: transparent;
  color: var(--secondary);
  padding: 12px 15px;
}

/* 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.show {
  display: flex;
}

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

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

.cookie-modal-header h3 {
  margin: 0;
}

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

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

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bg-dark);
}

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

.cookie-option-info {
  flex: 1;
  padding-right: 20px;
}

.cookie-option-info h4 {
  margin-bottom: 5px;
}

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

.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(--bg-dark);
  border-radius: 26px;
  transition: 0.3s;
}

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

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

.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-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--bg-dark);
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* 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;
  margin-bottom: 30px;
}

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

.thank-you-content p {
  max-width: 500px;
  margin: 0 auto 30px;
}

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

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

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

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

.last-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

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

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

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

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

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--bg-dark);
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border-radius: 50%;
}

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

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.team-member {
  flex: 1 1 calc(33.333% - 25px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

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

.team-member h4 {
  margin-bottom: 5px;
}

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

/* Industry Cards */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 180px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
}

.industry-card svg {
  width: 45px;
  height: 45px;
  fill: var(--primary);
  margin-bottom: 15px;
}

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

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

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

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

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

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-left: 5px solid var(--secondary);
}

.highlight-panel h3 {
  margin-bottom: 15px;
}

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-alt);
}

.quote-text {
  font-size: 1.75rem;
  font-style: italic;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    border-bottom: 1px solid var(--bg-dark);
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

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

  .hero {
    padding: 60px 0;
  }

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

  section {
    padding: 50px 0;
  }

  .service-card,
  .testimonial-card,
  .value-card,
  .team-member {
    flex: 1 1 100%;
  }

  .process-step {
    flex: 1 1 100%;
  }

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

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

  .stats-grid {
    gap: 30px;
  }

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

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

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

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

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

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

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

  .industry-card {
    flex: 1 1 100%;
  }
}
