/* Colors */
:root {
  --midnight: #012A4A;
  --teal: #1CCBBF;
  --sky: #E1F4F3;
  --amber: #FFB547;
  --white: #ffffff;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Manrope', Arial, sans-serif;
  background-color: var(--sky);
  color: var(--midnight);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: transparent;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.header.solid {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-dropdown {
  position: relative;
}

.lang-select {
  appearance: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  border: 2px solid var(--midnight);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--midnight);
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23012A4A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
}

.lang-select:hover {
  background-color: var(--white);
}

.lang-select:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 2rem;
  height: 2rem;
  background-color: var(--midnight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  border: 1px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--midnight);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid;
  cursor: pointer;
}

.btn-amber {
  background-color: var(--amber);
  color: var(--midnight);
  border-color: var(--amber);
}

.btn-amber:hover {
  background-color: #ffa726;
  border-color: #ffa726;
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 3.5rem;
  background-color: var(--sky);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 48rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-circle-large {
  width: 3rem;
  height: 3rem;
  background-color: var(--midnight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  border: 2px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-text-large {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--midnight);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--midnight);
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  display: block;
  font-size: 1rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 0.5rem;
}

.subtitle {
  display: block;
  font-size: 1rem;
  color: var(--midnight);
  margin-top: 0.25rem;
}

/* Customer pain (short, icon-backed) */
.customer-pain {
  width: 100%;
  padding: 2.5rem 0;
  background-color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(1, 42, 74, 0.06);
  border-bottom: 1px solid rgba(1, 42, 74, 0.06);
}

.customer-pain-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--midnight);
  text-align: center;
  margin-bottom: 0.5rem;
}

.customer-pain-intro {
  font-size: 0.9375rem;
  color: var(--gray-700);
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
}

.customer-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}

.pain-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.35rem 1rem;
  border: 1px solid rgba(1, 42, 74, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.pain-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--teal);
}

.pain-card-icon svg {
  display: block;
}

.pain-card p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.45;
}

/* Problem Solution */
.problem-solution {
  width: 100%;
  padding: 3rem 0;
}

.problem-solution-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.problem-column h2,
.solution-column h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem-column h2 {
  color: var(--gray-900);
}

.solution-column h2 {
  color: var(--teal);
}

.problem-column ul,
.solution-column ul {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  color: var(--gray-800);
  line-height: 1.8;
}

.problem-column li,
.solution-column li {
  margin-bottom: 0.5rem;
}

.solution-column p,
.solution-lead {
  font-size: 1.125rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.solution-column strong {
  font-weight: bold;
  color: var(--amber);
}

.integration-badge {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--sky);
  border-radius: 8px;
  border: 1px solid var(--teal);
}

.integration-badge p {
  font-size: 0.875rem;
  color: var(--gray-900);
  font-weight: 500;
  margin: 0;
}

/* Products */
.products {
  width: 100%;
  padding: 3rem 0;
}

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

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--midnight);
}

.product-grid {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-tile {
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid;
  transition: transform 0.2s;
}

.product-tile:hover {
  transform: scale(1.05);
}

.tile-sky {
  background-color: var(--sky);
  color: var(--gray-900);
  border-color: var(--sky);
}

.tile-amber {
  background-color: var(--amber);
  color: var(--gray-900);
  border-color: var(--amber);
}

.tile-midnight {
  background-color: var(--midnight);
  color: white;
  border-color: var(--midnight);
}

.tile-teal {
  background-color: var(--teal);
  color: white;
  border-color: var(--teal);
}

.product-icon {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.product-icon .icon-stroke {
  width: 2.25rem;
  height: 2.25rem;
}

.tile-midnight .product-icon,
.tile-teal .product-icon {
  color: var(--white);
}

.product-tile h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.tagline {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-tile ul {
  list-style: disc;
  padding-left: 1.25rem;
  line-height: 1.6;
}

.product-tile li {
  margin-bottom: 0.25rem;
}

/* Credibility (insurance / Belgium) */
.credibility {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, var(--sky) 100%);
  border-top: 1px solid rgba(1, 42, 74, 0.08);
}

.credibility-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.credibility-inner h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 1.5rem;
  text-align: center;
}

.credibility-lines {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cred-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.cred-line-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 0.15rem;
}

.cred-line-icon svg {
  display: block;
}

.cred-line p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.65;
  margin: 0;
}

.cred-ms-partner {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(1, 42, 74, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cred-ms-mark {
  display: flex;
  line-height: 0;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

.cred-ms-mark svg {
  display: block;
}

.cred-ms-caption {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--midnight);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.cred-ms-security {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Social Proof */
.social-proof {
  width: 100%;
  background-color: white;
  padding: 2rem 0 3rem;
}

.social-proof-header {
  margin-bottom: 2rem;
}

.social-proof-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.testimonials-note {
  font-size: 0.8125rem;
  color: var(--gray-700);
  font-style: italic;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.5;
}

.testimonials {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0 1rem;
}

.testimonial-logo {
  font-size: 1.875rem;
  margin-bottom: 0.25rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--midnight);
}

.testimonial-quote {
  color: var(--midnight);
  font-size: 0.875rem;
  font-style: italic;
}

/* Pricing */
.pricing {
  width: 100%;
  background-color: var(--sky);
  padding: 4rem 0;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-intro h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.75rem;
}

.pricing-intro p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.6;
  margin: 0;
}

.pricing-footnote {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-700);
  max-width: 36rem;
  line-height: 1.5;
}

.pricing-grid {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pricing-card {
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  background-color: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s;
  position: relative;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card-highlight {
  border-color: var(--teal);
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.price {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--teal);
}

.price-suffix {
  font-size: 1rem;
  font-weight: 600;
}

.pricing-card ul {
  color: var(--gray-800);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  list-style: none;
  padding: 0;
}

.pricing-card li {
  margin-bottom: 0.25rem;
}

.badge {
  display: inline-block;
  background-color: var(--teal);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  border: 1px solid var(--teal);
}

/* Demo form */
.demo-section {
  width: 100%;
  padding: 4rem 0;
  background-color: white;
}

.demo-container {
  max-width: 28rem;
}

.demo-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  text-align: center;
}

.demo-intro {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.5;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-form .form-group {
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 203, 191, 0.2);
}

.btn-block {
  width: 100%;
  text-align: center;
  border: 2px solid var(--amber);
}

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

/* FAQ */
.faq {
  width: 100%;
  padding: 4rem 0;
}

.faq .container {
  max-width: 48rem;
}

.faq h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2rem;
  text-align: center;
}

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

.faq-item {
  border-radius: 12px;
  padding: 1rem;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--gray-900);
}

.faq-toggle {
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: bold;
}

.faq-answer {
  margin-top: 0.5rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  content: '–';
}

/* Footer */
.footer {
  width: 100%;
  background-color: var(--midnight);
  color: white;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.footer-info a {
  color: white;
  text-decoration: underline;
}

.footer-small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.footer-credit {
  opacity: 0.95;
}

.footer-credit a {
  color: var(--amber);
  text-decoration: underline;
  font-weight: 600;
}

.footer-belgium {
  font-size: 0.8125rem;
  opacity: 0.9;
  font-weight: 500;
}

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

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .customer-pain-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    flex-direction: column;
  }

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

  .header-actions .btn {
    display: none;
  }

  .lang-dropdown {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

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

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

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