:root {
  --primary: #0b1c2c;
  --primary-mid: #132f4c;
  --accent: #0d9488;
  --accent-dark: #0f766e;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --light: #f4f7fa;
  --gray: #5a6a7a;
  --text: #1a2a3a;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 8px 30px rgba(11, 28, 44, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 28, 44, 0.12);
  --radius: 14px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.4rem; color: var(--primary); letter-spacing: -0.02em; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.85rem;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.nav a:hover, .nav a.active { color: var(--accent); }
.lang-switch { display: flex; gap: 2px; background: var(--light); border-radius: 8px; padding: 3px; }
.lang-switch a { padding: 6px 11px; border-radius: 6px; font-size: 0.8rem; font-weight: 700; }
.lang-switch a.active { background: var(--primary); color: white; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #b8921f); color: var(--primary); font-weight: 700; }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,162,39,0.35); }
.btn-white { background: white; color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }
.hero {
  position: relative; color: white; padding: 90px 0 100px; overflow: hidden;
  background: linear-gradient(135deg, #0b1c2c 0%, #132f4c 45%, #0a3d3a 100%);
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.18; mix-blend-mode: luminosity;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: 2.85rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero .subtitle { font-size: 1.15rem; opacity: 0.92; margin-bottom: 28px; max-width: 520px; line-height: 1.6; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-badge {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 500;
}
.hero-form {
  background: white; border-radius: 16px; padding: 32px; box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.hero-form h3 { color: var(--primary); margin-bottom: 18px; font-size: 1.25rem; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 0.95rem; font-family: inherit; transition: 0.2s; background: #fafbfc;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); background: white;
}
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; font-size: 0.84rem; color: var(--gray); }
.checkbox-group input { margin-top: 3px; width: auto; accent-color: var(--accent); }
.checkbox-group a { color: var(--accent); text-decoration: underline; }
.section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: 2.35rem; color: var(--primary); margin-bottom: 14px; letter-spacing: -0.02em; }
.section-header p { color: var(--gray); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.bg-light { background: var(--light); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: white; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 18px; }
.card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.95rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: white; border-radius: 18px; padding: 36px 28px; border: 2px solid var(--border);
  text-align: center; position: relative; transition: 0.25s;
}
.price-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--accent); background: linear-gradient(180deg, #f0fdfa 0%, white 40%);
  transform: scale(1.04); box-shadow: var(--shadow-lg);
}
.price-card.featured::before {
  content: 'Populair'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white; font-size: 0.75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
}
.price-card .price { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin: 12px 0 4px; }
.price-card .price span { font-size: 1rem; font-weight: 500; color: var(--gray); }
.price-card .period { color: var(--gray); font-size: 0.9rem; margin-bottom: 22px; }
.price-card ul { list-style: none; text-align: left; margin: 24px 0; }
.price-card ul li {
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-card ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.case-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); display: flex; flex-direction: column;
}
.case-card img { width: 100%; height: 200px; object-fit: cover; }
.case-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.case-tag { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.case-body h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.15rem; }
.case-result { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); font-weight: 600; color: var(--accent); font-size: 0.95rem; }
.clients-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 36px 48px;
}
.client-logo {
  font-weight: 700; font-size: 1.1rem; color: var(--primary); letter-spacing: -0.02em;
  padding: 12px 20px; border: 1.5px solid var(--border); border-radius: 8px; background: white;
  opacity: 0.75;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testimonial .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { color: var(--gray); font-style: italic; margin-bottom: 18px; font-size: 0.95rem; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial .author strong { display: block; color: var(--primary); font-size: 0.95rem; }
.testimonial .author span { font-size: 0.8rem; color: var(--gray); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center;
}
.team-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-info { padding: 22px 20px 26px; }
.team-info h3 { color: var(--primary); margin-bottom: 4px; }
.team-info .role { color: var(--accent); font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; }
.team-info p { color: var(--gray); font-size: 0.9rem; margin-bottom: 14px; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600;
  color: #0a66c2; border: 1.5px solid #0a66c2; padding: 7px 14px; border-radius: 8px;
}
.linkedin-btn:hover { background: #0a66c2; color: white; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; padding: 24px 16px; }
.step-num {
  width: 52px; height: 52px; background: var(--accent); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step h4 { color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
.step p { color: var(--gray); font-size: 0.9rem; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: 0.25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-body { padding: 20px; }
.news-meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 8px; display: flex; gap: 12px; }
.news-body h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d3a 100%);
  color: white; padding: 72px 0; text-align: center;
}
.cta-block h2 { font-size: 2.1rem; margin-bottom: 14px; }
.cta-block p { opacity: 0.9; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-item .icon-box {
  width: 46px; height: 46px; background: rgba(13,148,136,0.1); border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem;
}
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; background: white; }
.faq-q {
  padding: 18px 20px; font-weight: 600; color: var(--primary); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-a { padding: 0 20px 18px; color: var(--gray); display: none; }
.faq-item.open .faq-a { display: block; }
.footer { background: var(--primary); color: rgba(255,255,255,0.85); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: white; margin-bottom: 16px; font-size: 0.95rem; }
.footer a { display: block; margin-bottom: 8px; font-size: 0.9rem; opacity: 0.8; }
.footer a:hover { opacity: 1; color: var(--accent); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  font-size: 0.84rem; line-height: 1.75;
}
.footer-legal a { display: inline; color: var(--accent); }
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--primary); color: white; padding: 22px 24px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.3); display: none;
  border-top: 3px solid var(--accent);
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1180px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.92rem; line-height: 1.5; max-width: 720px; }
.cookie-inner a { color: var(--gold-light); text-decoration: underline; font-weight: 600; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns button {
  padding: 12px 22px; border-radius: 9px; font-weight: 700; cursor: pointer;
  border: none; font-size: 0.9rem;
}
.btn-accept { background: var(--accent); color: white; }
.btn-reject { background: transparent; border: 1.5px solid rgba(255,255,255,0.45) !important; color: white; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 24px 80px; }
.legal-content h1 { color: var(--primary); margin-bottom: 20px; }
.legal-content h2 { color: var(--primary); margin: 32px 0 12px; font-size: 1.25rem; }
.legal-content p, .legal-content li { margin-bottom: 12px; color: var(--gray); }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.page-hero {
  background: linear-gradient(135deg, var(--primary), #0a3d3a); color: white;
  padding: 64px 0; text-align: center;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-hero p { opacity: 0.9; }
.privacy-strip {
  background: #ecfdf5; border-bottom: 1px solid #a7f3d0; padding: 10px 0;
  text-align: center; font-size: 0.85rem; color: #065f46;
}
.privacy-strip a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; }
@media (max-width: 992px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-3, .news-grid, .team-grid, .testimonial-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .cards-4, .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: white;
    flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 14px; }
  .nav.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .cards-3, .cards-4, .news-grid, .team-grid, .process-steps, .testimonial-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner .btn { display: none; }
}

/* Logo image */
.logo img.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.footer .logo img.logo-img {
  height: 36px;
  filter: brightness(0) invert(1);
}
.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  background: #0b1c2c;
}
.expanded-block {
  margin-bottom: 28px;
}
.expanded-block h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.expanded-block p, .expanded-block li {
  color: var(--gray);
  margin-bottom: 10px;
}
.expanded-block ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
