/* ── HERO ── */
.ct-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(160deg, oklch(96% 0.04 265) 0%, oklch(99% 0.005 265) 60%);
  border-bottom: 1px solid var(--border);
}
.ct-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ct-orb { position: absolute; border-radius: 50%; }
.ct-orb-1 {
  width: 560px; height: 560px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, oklch(88% 0.08 265 / 0.45) 0%, transparent 65%);
}
.ct-orb-2 {
  width: 380px; height: 380px;
  bottom: -140px; left: -60px;
  background: radial-gradient(circle, oklch(92% 0.05 28 / 0.3) 0%, transparent 65%);
}
.ct-hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 0;
}
.ct-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem; font-weight: 600;
  color: var(--indigo-mid);
  width: fit-content;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px oklch(40% 0.18 265 / 0.08);
}
.ct-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
  text-wrap: balance;
  margin-bottom: 1.1rem;
}
.ct-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-mid), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ct-hero-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
}

/* ── MAIN LAYOUT ── */
.ct-wrap { padding-top: 3.5rem; padding-bottom: 5rem; }
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-info-col { display: contents; }
}

/* ── CARDS ── */
.ct-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.ct-card:last-child { margin-bottom: 0; }
.ct-card-hdr { margin-bottom: 1.25rem; }
.ct-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: -0.02em; color: var(--text);
}
.ct-card-sub {
  font-size: 0.83rem; color: var(--muted);
  margin-top: 3px;
}

/* ── FORM CARD ── */
.ct-form-card { padding: 2rem 2.25rem; }
@media (max-width: 600px) { .ct-form-card { padding: 1.5rem; } }

/* ── FEEDBACK ── */
.ct-feedback {
  display: flex; align-items: flex-start; gap: 0.9rem;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-size: 0.9rem; line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ct-feedback--success {
  background: oklch(93% 0.05 145);
  color: oklch(35% 0.14 145);
  border: 1px solid oklch(82% 0.1 145);
}
.ct-feedback--error {
  background: oklch(94% 0.04 28);
  color: oklch(40% 0.15 28);
  border: 1px solid oklch(85% 0.08 28);
}
.ct-feedback-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-feedback--success .ct-feedback-icon { background: oklch(82% 0.1 145); color: oklch(35% 0.14 145); }
.ct-feedback--error   .ct-feedback-icon { background: oklch(85% 0.08 28);  color: oklch(40% 0.15 28); }

/* ── FORM ELEMENTS ── */
.ct-form { display: flex; flex-direction: column; gap: 1.1rem; }
.ct-row { display: grid; gap: 1rem; }
.ct-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .ct-row-2 { grid-template-columns: 1fr; } }

.ct-field { display: flex; flex-direction: column; gap: 0.4rem; }

.ct-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text);
}
.ct-label span { color: var(--accent); margin-left: 1px; }

.ct-input {
  width: 100%;
  background: oklch(98.5% 0.005 265);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  appearance: none;
}
.ct-input::placeholder { color: var(--muted); }
.ct-input:focus {
  border-color: var(--indigo-mid);
  background: #fff;
  box-shadow: 0 0 0 3px oklch(52% 0.20 265 / 0.10);
}

.ct-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='oklch(56%25 0.03 265)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.ct-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.ct-submit {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent);
  color: #fff;
  border: none; cursor: pointer;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 4px 18px oklch(62% 0.18 28 / 0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.ct-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(62% 0.18 28 / 0.38);
}

/* ── DIRECT CONTACT ITEMS ── */
.ct-contact-items { display: flex; flex-direction: column; gap: 0.75rem; }
.ct-contact-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s, transform 0.12s;
}
.ct-contact-item:hover {
  border-color: var(--indigo-mid);
  background: var(--indigo-light);
  transform: translateX(3px);
}
.ct-contact-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-icon-indigo { background: var(--indigo-light); color: var(--indigo); }
.ct-icon-green  { background: oklch(93% 0.05 145); color: oklch(42% 0.16 145); }

.ct-contact-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--muted); margin-bottom: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ct-contact-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  color: var(--text);
}

/* ── BEDRIJFSGEGEVENS ── */
.ct-details {
  display: flex; flex-direction: column; gap: 0;
  font-size: 0.88rem;
}
.ct-detail-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.ct-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.ct-detail-row:first-child { padding-top: 0; }
dt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; color: var(--muted);
  font-size: 0.82rem; white-space: nowrap;
}
dd {
  font-family: 'Inter', sans-serif;
  color: var(--text); font-size: 0.88rem;
  text-align: right; word-break: break-all;
}
dd a {
  color: var(--indigo-mid);
  text-decoration: none;
}
dd a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ── PROMISE CARD ── */
.ct-card--accent {
  background: linear-gradient(135deg, oklch(40% 0.18 265), oklch(30% 0.14 280));
  border: none;
  display: flex; align-items: flex-start; gap: 0.9rem;
}
.ct-promise-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: oklch(100% 0 0 / 0.12);
  display: flex; align-items: center; justify-content: center;
  color: oklch(85% 0.06 265);
  flex-shrink: 0;
}
.ct-promise-text {
  font-size: 0.87rem; line-height: 1.6;
  color: oklch(80% 0.05 265);
}
.ct-promise-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  color: #fff; margin-bottom: 3px;
}

/* ── SIDEBAR ORDER ON MOBILE ── */
@media (max-width: 900px) {
  .ct-info-col > .ct-card:nth-child(3) { order: -1; } /* promise card last */
}
