/*
Theme Name: Controllx
Author: Inventus
Version: 1.0
*/

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #f47a1f;
--green-dark: #e6630d;
--green-deep: #9f3f05;
--green-light: #fff0e5;
--green-mid: #f8b37a;
    --text: #111;
    --text-muted: #5a5a5a;
    --text-light: #888;
    --border: rgba(0,0,0,0.1);
    --bg: #fafaf8;
    --white: #fff;
    --radius: 12px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--green-dark); }

  /* HERO */
  .hero {
    padding: 100px 48px 80px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-left {}
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .hero h1 em { color: var(--green); font-style: normal; }
  .hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--green-dark); }
  .btn-primary:active { transform: scale(0.98); }
  .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { background: rgba(0,0,0,0.04); }

  /* HERO RIGHT — stats block */
  .hero-right {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero-stat-label { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
  .hero-stat-val { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--text); }
  .hero-stat-val span { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-muted); }
  .stat-divider { border: none; border-top: 1px solid var(--border); }
  .hero-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 6px;
    margin-bottom: 4px;
  }

  /* SECTION */
  section { padding: 80px 48px; max-width: 1100px; margin: 0 auto; }
  .section-label { font-size: 12px; color: var(--green-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
  .section-title { font-family: 'DM Serif Display', serif; font-size: 36px; font-weight: 400; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
  .section-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 48px; line-height: 1.7; }

  /* DIVIDER */
  .full-divider { border: none; border-top: 1px solid var(--border); }

  /* DIENSTEN CARDS */
  .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .card:hover { border-color: var(--green-mid); transform: translateY(-2px); }
  .card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .card h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
  .card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* STATS STRIP */
  .stats-strip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    margin-bottom: 0;
  }
  .stat-cell {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--text); margin-bottom: 4px; }
  .stat-lbl { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

  /* AANPAK STEPS */
  .steps { display: flex; flex-direction: column; gap: 0; }
  .step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .step h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
  .step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* VOORDELEN */
  .voordelen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .voordeel {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .voordeel-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .voordeel h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
  .voordeel p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

  .contact-form .gform_wrapper {
  margin: 0 !important;
}

.contact-form .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 16px 12px !important;
}

.contact-form .gfield {
  grid-column: span 12 !important;
  margin: 0 !important;
}

.contact-form .gfield--width-half {
  grid-column: span 6 !important;
}

.contact-form .gfield_label {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 6px !important;
  font-weight: 400 !important;
}

.contact-form select,
.contact-form .gfield_select {
  height: 43px !important;
  min-height: 43px !important;
  line-height: 43px !important;
  padding: 0 14px !important;
  display: block !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100% !important;
  min-height: 43px !important;
  padding: 10px 14px !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: var(--text) !important;
  background: var(--bg) !important;
}

.contact-form textarea {
  min-height: 90px !important;
  resize: vertical !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green) !important;
}

.contact-form .gform_footer {
  padding: 0 !important;
  margin: 4px 0 0 !important;
}

.contact-form .gform_button {
  width: 100% !important;
  background: var(--green) !important;
  color: #fff !important;
  border: none !important;
  padding: 13px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: 'DM Sans', sans-serif !important;
  cursor: pointer !important;
}

@media (max-width: 768px) {
  .contact-form .gfield--width-half {
    grid-column: span 12 !important;
  }
}



.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  height: 90px;
  resize: vertical;
}

.contact-form .gform_button {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}

.contact-form .gform_button:hover {
  background: var(--green-dark);
}

.contact-form .gform_footer {
  padding: 0;
  margin: 4px 0 0;
}

.contact-form .validation_message,
.contact-form .gfield_required,
.contact-form .gform_validation_errors {
  font-size: 12px;
}

.contact-form .gform_confirmation_message {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  padding: 32px 16px;
}
  .form-wrap {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 48px;
  }
  .form-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .form-info .section-title { margin-bottom: 16px; }
  .form-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
  .form-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
  }
  .form-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

  .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
  }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
  .field input, .field select, .field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
  }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
  .field textarea { height: 90px; resize: vertical; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .submit-btn {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
  }
  .submit-btn:hover { background: var(--green-dark); }
  .form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; }

  /* SUCCESS */
  #success-msg {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .success-check {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
  }
  #success-msg h3 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }
  #success-msg p { font-size: 14px; color: var(--text-muted); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
  }
  .footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--text);
    display: flex; align-items: center; gap: 8px;
  }
  footer p { font-size: 13px; color: var(--text-light); }

  /* ANIMATE IN */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left { animation: fadeUp 0.6s ease both; }
  .hero-right { animation: fadeUp 0.6s 0.15s ease both; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 60px 20px 40px; gap: 32px; }
    .hero h1 { font-size: 36px; }
    section { padding: 56px 20px; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(3) { border-right: 1px solid var(--border); }
    .voordelen-grid { grid-template-columns: 1fr; }
    .form-wrap { padding: 56px 20px; }
    .form-inner { grid-template-columns: 1fr; gap: 32px; }
    footer { padding: 24px 20px; flex-direction: column; gap: 12px; text-align: center; }
  }