* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0f2a3d;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fff;
}

.section.tint {
  background: #0f2a3d;
  color: #f7f5f1;
}

.section.soft {
  background: #eef4f5;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-header span {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #4c6a7c;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2vw, 2.3rem);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4c676;
  color: #0f2a3d;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #0f2a3d;
  color: #f7f5f1;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: #0f2a3d;
  color: #0f2a3d;
}

.btn.light {
  background: #f4c676;
  color: #0f2a3d;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 42, 61, 0.16);
}

header {
  background: #f7f5f1;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(15, 42, 61, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(15, 42, 61, 0.18);
  position: absolute;
  right: 5%;
  top: 72px;
  min-width: 200px;
}

.nav-links a {
  font-weight: 600;
}

.nav-links.open {
  display: flex;
}

.menu-toggle {
  border: 1px solid rgba(15, 42, 61, 0.2);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #0f2a3d;
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #0f2a3d;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.hero {
  padding: 80px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 42, 61, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card.highlight {
  background: #0f2a3d;
  color: #f7f5f1;
}

.card small {
  color: #4c6a7c;
  font-weight: 600;
}

.card.highlight small {
  color: #f4c676;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat-item strong {
  font-size: 1.6rem;
}

.feature-list,
.service-list,
.faq-list,
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item,
.service-item,
.testimonial,
.faq-item,
.comparison-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item span {
  font-weight: 700;
  color: #0f2a3d;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  background: #f4c676;
  color: #0f2a3d;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 3px solid #58c7b3;
  background: #fff;
  border-radius: 12px;
}

.quote {
  background: #0f2a3d;
  color: #f7f5f1;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item button {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.faq-item p {
  display: none;
  color: #4c6a7c;
}

.faq-item.open p {
  display: block;
}

.faq-item span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #58c7b3;
}

.contact-info,
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background: #0f2a3d;
  color: #f7f5f1;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0f2a3d;
  box-shadow: 0 20px 45px rgba(15, 42, 61, 0.2);
  padding: 20px;
  border-radius: 18px;
  width: min(520px, 90%);
  z-index: 30;
}

.cookie-banner {
  bottom: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  top: 12%;
  display: none;
  gap: 14px;
}

.cookie-modal.active {
  display: flex;
  flex-direction: column;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f5f1;
  padding: 12px 14px;
  border-radius: 12px;
}

.cookie-option button {
  border: 1px solid rgba(15, 42, 61, 0.2);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-option button.active {
  background: #58c7b3;
  color: #0f2a3d;
  border-color: transparent;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 61, 0.5);
  display: none;
  z-index: 25;
}

.overlay.active {
  display: block;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    display: flex;
    gap: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-list,
  .service-list,
  .industry-grid,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item,
  .service-item,
  .industry-item,
  .testimonial,
  .stat-item,
  .comparison-item {
    flex: 1 1 calc(50% - 16px);
  }

  .process-steps {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 calc(50% - 16px);
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 120px 0;
  }

  .feature-item,
  .service-item,
  .industry-item,
  .testimonial,
  .stat-item,
  .comparison-item {
    flex: 1 1 calc(33% - 16px);
  }
}
