/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.icon {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: -0.15em;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f0f7fb;
}

/* Header */
header {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 50px;
}

.trustpilot-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.trustpilot-stars {
  color: #00b67a;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #9333ea;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section - Redesigned */
.hero {
  background: #003366;
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-feature-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #93c5fd;
}

.hero-feature-box ul {
  list-style: none;
}

.hero-feature-box li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.hero-feature-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #93c5fd;
}

.hero-cta-box {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  text-align: center;
}

.hero-cta-box h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-cta-box p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-cta-box .cta-highlight {
  background: linear-gradient(135deg, #7f64e1  0%, #856ddd 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: white;
  color: #003366;
  border: 2px solid #003366;
}

.btn-outline:hover {
  background: #003366;
  color: white;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* USP Grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.usp-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}
.usp-card p:last-of-type {
  margin-top: auto; /* alles erboven duwt omhoog */
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #9333ea;
}

.usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.usp-icon i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.usp-card h3 {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 1rem;
  font-weight: 700;
}

.usp-card p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.usp-card .highlight {
  display: inline-block;
  background: #fef3c7;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  color: #92400e;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Approach Section */
.approach-section {
  background: white;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.approach-card {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid #e2e8f0;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #9333ea;
}

.approach-header {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.approach-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.approach-header h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.approach-header .badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.approach-body {
  padding: 2rem;
}

.approach-body p {
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.approach-body ul {
  list-style: none;
  margin-top: 1.5rem;
}

.approach-body li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  color: #1e293b;
  font-weight: 500;
}

.approach-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9333ea;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Comparison Section */
.comparison-section {
  background: linear-gradient(135deg, #f0f7fb 0%, #e0f2fe 100%);
}

.comparison-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-top: 2rem;
}

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

.comparison-table th {
  background: #003366;
  color: white;
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table td {
  padding: 1.5rem;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

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

.comparison-table tbody tr:hover {
  background: #f8fafc;
}

.comparison-table .check {
  color: #10b981;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.comparison-table .cross {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.comparison-highlight {
  background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
  color: white;
  padding: 2.5rem;
  text-align: center;
  border-radius: 16px;
  margin: 2rem;
}

.comparison-highlight h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.comparison-highlight p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Portal Section */
.portal-section {
  background: #e9f3f9;
}

.portal-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.portal-image {
  background: white url('https://simpelsubsidie.nl/img/partnerportaal.webp') no-repeat center center;
  background-size:contain;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 20px 60px rgba(0,51,102,0.2);
  position: relative;
  overflow: hidden;
}

.portal-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
}

.portal-image-content {
  position: relative;
  z-index: 1;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
}

.portal-features {
  list-style: none;
}

.portal-features li {
  padding: 1.2rem;
  background: #f8fafc;
  margin-bottom: 1rem;
  border-radius: 12px;
  border-left: 4px solid #9333ea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.portal-features li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.portal-features strong {
  color: #003366;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.portal-features span {
  color: #64748b;
  font-size: 0.95rem;
}

.testimonial-box {
  background: linear-gradient(135deg, #f0f7fb 0%, #e0f2fe 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  border-left: 4px solid #3b82f6;
  font-style: italic;
  color: #475569;
}

.testimonial-author {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: #003366;
}

/* API Section */
.api-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7fb 100%);
}

.api-flow {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.api-flow h3 {
  text-align: center;
  margin-bottom: 3rem;
  color: #003366;
  font-size: 1.8rem;
  font-weight: 700;
}

.api-flow-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.api-box {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,51,102,0.2);
  font-weight: 600;
  min-width: 160px;
  text-align: center;
  transition: transform 0.3s;
}

.api-box:hover {
  transform: scale(1.05);
}

.api-arrow {
  font-size: 2rem;
  color: #9333ea;
  font-weight: bold;
}

.api-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.api-benefit {
  background: #f8fafc;
  padding: 1.8rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.api-benefit:hover {
  border-color: #9333ea;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.api-benefit h4 {
  color: #003366;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.api-benefit p {
  color: #64748b;
  font-size: 0.95rem;
}

.api-praise {
  background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(147,51,234,0.2);
}

.api-praise p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.api-praise .subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.api-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Pricing Section */
.pricing-section {
  background: white;
}

.pricing-visual {
  background: linear-gradient(135deg, #f0f7fb 0%, #e0f2fe 100%);
  padding: 2rem 3rem 3rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  margin-top: 2rem;
}

.pricing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.pricing-step:hover {
  border-color: #9333ea;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(147,51,234,0.15);
}

.pricing-step .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.pricing-step h4 {
  color: #003366;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-step .price {
  color: #9333ea;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.pricing-step p {
  color: #64748b;
  font-size: 0.9rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  color: #0e4892;
  font-weight: 600;
  border: 2px solid #c7dbfe;
  font-size: 1.05rem;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #f0f7fb 0%, #e0f2fe 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #9333ea;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 25px;
  font-size: 5rem;
  color: #9333ea;
  opacity: 0.15;
  font-weight: bold;
}

.testimonial-content {
  color: #475569;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
}

.author-info h4 {
  color: #003366;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.author-info p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.final-cta p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-note {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.95rem;
  opacity: 0.85;
}

.final-note a {
  color: #93c5fd;
  text-decoration: underline;
}

/* Footer */
footer {
  background: #1e293b;
  color: white;
  padding: 2.5rem 0;
  text-align: center;
}

footer a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #bae6fd;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portal-showcase {
    grid-template-columns: 1fr;
  }

  .hero-split-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-cta-box h2 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.8rem;
    display: none;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .logo-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-cta-box {
    padding: 2rem;
  }

  .api-flow-diagram {
    flex-direction: column;
  }

  .api-arrow {
    transform: rotate(90deg);
  }

  .trustpilot-badge {
    font-size: 0.8rem;
    gap: 0.5rem;
    cursor:pointer;
  }
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.contact-form input:focus {
  outline: none;
  border-color: #9333ea;
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.contact-form input::placeholder {
  color: #94a3b8;
}

.contact-form-bottom {
  max-width:500px;
  margin-left: auto;
  margin-right:auto;
}