.elementor-15969 .elementor-element.elementor-element-6db73f6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15969 .elementor-element.elementor-element-6db73f6:not(.elementor-motion-effects-element-type-background), .elementor-15969 .elementor-element.elementor-element-6db73f6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F172A;}body.elementor-page-15969:not(.elementor-motion-effects-element-type-background), body.elementor-page-15969 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F172A;}@media(max-width:1024px){.elementor-15969 .elementor-element.elementor-element-6db73f6{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}}@media(max-width:767px){.elementor-15969 .elementor-element.elementor-element-6db73f6{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-11c32a7 *//* CSS Variables */
:root {
    --bg-main: #141414!important;
    --bg-card: #1C1D1A!important;
    --neon-green: #D4FF00!important;
    --text-white: #FFFFFF!important;
    --text-gray: #A0A0A0!important;
    --font-main: 'Outfit', sans-serif!important;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typografie */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.highlight {
    color: var(--neon-green);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--neon-green);
    color: #000;
}

.btn-primary:hover {
    background-color: #bce600;
}

.btn-dark {
    background-color: #000;
    color: var(--neon-green);
}

.btn-dark:hover {
    background-color: #222;
}

/* Navbar */
.navbar {
    padding: 30px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-links a:hover {
    color: var(--neon-green);
}

/* Hero Section */
.hero {
    margin-top: 20px;
    margin-bottom: 80px;
}

.hero-content {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-text-box {
    max-width: 50%;
    margin-left: auto; /* Zorgt dat tekst rechts staat net als in design */
}

.hero-text-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Overview 1 */
.overview {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 60px;
}

.overview-left {
    flex: 1;
}

.overview-right {
    flex: 1;
    color: var(--text-gray);
    font-size: 0.95rem;
    padding-top: 10px;
}

/* Features Cards */
.features {
    margin-bottom: 80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    border-radius: 20px;
    padding: 40px 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.card-image {
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    grid-column: span 1;
}

.card-image h3 {
    margin-top: auto;
}

.card-dark {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
}

.card-dark p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: auto;
}

.icon-placeholder {
    font-size: 2rem;
    color: var(--neon-green);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Partners */
.partners {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 120px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
}

.partners-title span {
    color: var(--neon-green);
    font-size: 0.7rem;
    font-weight: 700;
}

.partners-title p {
    font-size: 1.1rem;
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    flex: 1;
    align-items: center;
    color: #666;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.script-font {
    font-family: 'Brush Script MT', cursive; /* Tijdelijke benadering van het Houben logo */
    font-size: 2rem;
    text-transform: none;
}

/* Overview Split 2 */
.overview-split {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-paragraphs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.split-paragraphs p {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 20px;
    height: 500px;
    background-image: 
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background-color: #fff;
    border-radius: 30px;
    border: 8px solid #333;
    position: absolute;
    bottom: -50px;
    right: 100px;
    transform: rotate(15deg);
    box-shadow: -20px 20px 30px rgba(0,0,0,0.5);
}

/* Demo Section */
.demo {
    margin-bottom: 80px;
}

.demo-box {
    background-color: var(--neon-green);
    color: #000;
    border-radius: 20px;
    display: flex;
    padding: 60px;
}

.demo-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.demo-left h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.demo-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.demo-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.demo-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.input-group {
    flex: 1 1 45%;
}

.demo-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding: 10px 0;
    font-size: 0.9rem;
    color: #000;
    font-family: var(--font-main);
}

.demo-form input::placeholder {
    color: rgba(0,0,0,0.5);
}

.demo-form input:focus {
    outline: none;
    border-bottom-color: #000;
}

.submit-group {
    flex: 1 1 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    margin-bottom: 40px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.footer-bottom {
    font-size: 0.75rem;
    color: #555;
}

/* Responsiveness (Basic) */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-text-box { max-width: 70%; }
    .overview, .overview-split { flex-direction: column; gap: 40px; }
    .demo-box { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-text-box { max-width: 100%; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .nav-links { display: none; } /* Simpel gehouden voor mobiel, hamburger menu nodig in productie */
    .partners { flex-direction: column; text-align: center; }
    .partners-logos { flex-wrap: wrap; gap: 20px; }
}/* End custom CSS */
/* Start custom CSS *//* 🔒 Verberg de standaard Astra header volledig */
#masthead,
.ast-mobile-header-wrap,
.ast-desktop-header {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

#mastfoot,
.site-footer,
.ast-desktop-footer {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}
.ro-menu-safe-wrapper{
    display: none;
}/* End custom CSS */