/* ============================================================
   Sincere – Coming Soon – Main Stylesheet
   Converted from Lovable/React/Tailwind to plain CSS
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:        #0A2A66;
  --accent:         #00AEEF;
  --accent-fg:      #ffffff;
  --background:     hsl(210, 20%, 98%);
  --card:           #ffffff;
  --border:         #e2e8f0;
  --muted:          #64748b;
  --muted-faded:    rgba(100, 116, 139, 0.6);

  --hero-from:      #0A2A66;
  --hero-to:        #0074A6;

  --glass-bg:       rgba(255,255,255,0.10);
  --glass-border:   rgba(255,255,255,0.15);

  --radius-xl:      1rem;
  --radius-2xl:     1.5rem;
  --radius-pill:    9999px;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background);
  color: #222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utilities ── */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ============================================================
   HEADER / HERO
   ============================================================ */
.site-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
}

/* Decorative blobs */
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-blob--1 { top: -10rem;  right: -8rem;  width: 520px; height: 520px; background: rgba(255,255,255,0.05); }
.hero-blob--2 { left: -8%;    top: 48%;      width: 360px; height: 360px; background: rgba(255,255,255,0.04); }
.hero-blob--3 { bottom: 2.5rem; right: 18%;  width: 180px; height: 180px; background: rgba(255,255,255,0.07); }

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ── Nav ── */
.site-nav {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
@media (min-width: 768px) { .site-nav { padding: 1.25rem 0; } }

.nav-phone-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.10);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s;
}
.nav-phone-link:hover { background: rgba(255,255,255,0.15); }
@media (min-width: 768px) { .nav-phone-link { display: inline-flex; } }
.nav-phone-link .icon { width: 1rem; height: 1rem; color: var(--accent); }

/* ── Brand mark ── */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-mark img { height: 2.5rem; width: auto; }
.brand-mark__name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .brand-mark__name { font-size: 1.875rem; } }

/* ── Hero content grid ── */
.hero-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .hero-inner { padding-left: 3rem; padding-right: 3rem; }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
  align-items: end;
}
@media (min-width: 768px) { .hero-grid { padding-top: 2.5rem; padding-bottom: 6rem; } }
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 3rem;
    padding-bottom: 7rem;
  }
}

/* Coming-soon badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.10);
  padding: 0.375rem 1rem;
  margin-bottom: 1.25rem;
}
.hero-badge .icon { width: 1rem; height: 1rem; color: var(--accent); }
.hero-badge span { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.90); }

/* Hero heading */
.hero-heading {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-heading { font-size: 3rem; } }
.hero-heading .accent { color: var(--accent); }

/* Hero CTA buttons */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn .icon { width: 1rem; height: 1rem; }

.btn--accent {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 8px 24px rgba(0,174,239,0.25);
}
.btn--accent:hover { filter: brightness(1.1); }

.btn--glass {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.btn--glass:hover { background: rgba(255,255,255,0.15); }

/* ── Contact card (hero right) ── */
.hero-card {
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.08);
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-card__label {
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}
.hero-card__list { display: flex; flex-direction: column; gap: 0.75rem; }

.hero-card__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
  padding: 1rem 1.25rem;
  transition: background 0.2s;
  color: #fff;
}
.hero-card__item:hover { background: rgba(255,255,255,0.10); }
.hero-card__item .icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--accent); }
.hero-card__item-title { font-size: 0.875rem; font-weight: 600; }
.hero-card__item-sub   { font-size: 0.75rem;  color: rgba(255,255,255,0.5); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  margin-top: -0.5rem;
}
@media (min-width: 768px) { .features-section { padding: 1rem 3rem; } }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: rgba(0,174,239,0.30);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.feature-card__icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  background: rgba(0,174,239,0.10);
  color: var(--accent);
  transition: background 0.3s, color 0.3s;
}
.feature-card:hover .feature-card__icon {
  background: var(--accent);
  color: #fff;
}
.feature-card__icon svg { width: 1rem; height: 1rem; }

.feature-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}
.feature-card__desc {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.contact-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem;
}
@media (min-width: 768px) { .contact-inner { padding: 2rem 3rem; } }

.contact-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .contact-heading { font-size: 1.5rem; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 3rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-block__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.contact-block__header svg { width: 1rem; height: 1rem; color: var(--accent); }
.contact-block__title { font-size: 0.875rem; font-weight: 700; color: var(--primary); }

.contact-block__body {
  padding-left: 1.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-block__body a {
  display: block;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-block__body a:hover { color: var(--accent); }
.contact-block__body .sub { font-size: 0.75rem; color: var(--muted-faded); }

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-faded);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
@media (min-width: 768px) { .site-footer { padding: 0.75rem 3rem; } }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }

.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand .brand-mark img  { height: 2rem; }
.footer-brand .brand-mark__name { font-size: 1.25rem; color: var(--primary); }
.footer-copy { font-size: 0.75rem; color: var(--muted); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--muted-faded);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.iso-badge { height: 2.5rem; width: auto; opacity: 0.6; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll-triggered fade (requires JS class toggle) */
.scroll-hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-visible { opacity: 1; transform: none; }

/* ===== Statische pagina's in site-stijl ===== */

.page-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #0b3c74, #0e5f9c);
  color: #ffffff;
}

.page-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}

.page-section {
  padding: 4rem 0;
  background-color: #f9fbfd;
}

.page-content {
  max-width: 800px;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-content p,
.page-content li {
  line-height: 1.6;
}

.page-content ul {
  margin-left: 1.25rem;
}
``