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

:root {
  --plinq-teal: #65BAAF;
  --plinq-teal-dark: #41695B;
  --plinq-orange: #E87200;
  --plinq-orange-dark: #AE5600;
  --plinq-text: #4D4D4D;
  --plinq-border: #EEEEEE;
  --plinq-bg: #F2F2F2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--plinq-text);
  background: var(--plinq-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  position: relative;
  background: linear-gradient(135deg,
    var(--plinq-orange-dark) 0%,
    var(--plinq-orange-dark) 30%,
    var(--plinq-orange) 30%,
    var(--plinq-orange) 55%,
    #F08A2E 55%,
    #F08A2E 100%);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 32px 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  clip-path: polygon(80% 0, 100% 0, 100% 62%);
  z-index: 1;
}

.hero-logo {
  position: absolute;
  top: 18px;
  right: 28px;
  height: 100px;
  width: auto;
  z-index: 2;
}

.hero h1 {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  max-width: 65%;
  line-height: 1.25;
}

@media (max-width: 600px) {
  .hero {
    min-height: 240px;
    padding: 24px;
  }
  .hero-logo {
    height: 70px;
    top: 14px;
    right: 18px;
  }
  .hero h1 {
    font-size: 24px;
    max-width: 70%;
  }
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  max-width: 640px;
  width: 100%;
  padding: 40px;
}

.card p {
  line-height: 1.6;
  font-size: 15px;
}

.info-box {
  background: var(--plinq-bg);
  border-left: 4px solid var(--plinq-teal);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
}

.warn-box {
  background: #FFF6EE;
  border-left: 4px solid var(--plinq-orange);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
}

.klant-ref {
  font-size: 13px;
  color: #7A7A7A;
  margin-top: -8px;
}

.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.confirm-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--plinq-teal);
  flex-shrink: 0;
}

.confirm-row label {
  font-size: 14px;
  line-height: 1.5;
}

.btn-primary {
  background: var(--plinq-orange);
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  padding: 14px 36px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover:not(:disabled) {
  background: var(--plinq-orange-dark);
}

.btn-primary:disabled {
  background: #CCCCCC;
  cursor: not-allowed;
}

.site-footer {
  background: var(--plinq-text);
  color: #FFFFFF;
  text-align: center;
  padding: 18px;
  font-size: 12px;
  border-top: 3px solid var(--plinq-teal);
}

.site-footer a {
  color: #FFFFFF;
}
