/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    font-family: "Maven Pro", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}
img { border: 0; display: block; max-width: 100%; }
a { text-decoration: none; color: #000; outline: none; }
h1, h2, h3 { font-style: normal; }
h2 { font-size: 40px; line-height: 48px; font-weight: 700; color: #000; }
h2 strong { font-weight: 700; }
p { margin-bottom: 24px; }
.container { max-width: 1310px; padding: 0 15px; margin: 0 auto; }

/* Buttons */
.btn-orange {
    border: none;
    border-radius: 16px;
    background: #f27d52;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 16px;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-orange:hover { background: #e06a3f; color: #fff; }

/* ===== NAVBAR ===== */
#header-wrap {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    background: transparent;
    transition: background 0.3s;
}
#header-wrap.scrolled {
    background: rgba(0, 78, 143, 0.95);
    backdrop-filter: blur(10px);
}
.header-inner {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo img { height: 40px; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-link-vbi {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 14px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    transition: all 0.3s;
}
.nav-link-vbi:hover { border-color: rgba(255,255,255,0.8); color: #fff; }
.nav-link-vbi svg { width: 14px; height: 14px; }

/* ===== HERO SECTION ===== */
.hero-container {
    position: relative;
    background: #004E8F;
}
.hero-scroll-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #004E8F;
    overflow: hidden;
    z-index: 2;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    padding: 72px 0 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-content {
    color: #fff;
    position: relative;
    z-index: 2;
}
.hero-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}
.hero-content .subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 4px;
}
.hero-content .subtitle strong {
    font-weight: 800;
}
.hero-content h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 86px;
    color: #fff;
    margin-bottom: 0;
}
.hero-content h1 sub {
    font-size: 56px;
    vertical-align: baseline;
    position: relative;
    top: 8px;
}
.hero-content h1 b { font-weight: 800; }
.hero-text-large {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 0;
    color: #fff;
}
.hero-text-large strong {
    font-weight: 700;
}
.cloud-canvas {
    position: absolute;
    right: calc(50% - 655px);
    top: 50%;
    transform: translateY(-45%);
    width: 600px;
    height: 625px;
    z-index: 1;
    pointer-events: none;
}
#cloudCanvas { width: 100%; height: 100%; }
#cloudFallback { width: 100%; height: 100%; object-fit: contain; }

/* Scroll arrow */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4E79A7;
    border-radius: 0;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(8px); }
    60% { transform: translateX(-50%) translateY(4px); }
}

/* Wave transition */
.wave-transition {
    position: relative;
    z-index: 2;
    margin-top: -1px;
}
.wave-transition svg {
    display: block;
    width: 100%;
    height: 120px;
}
@media (min-width: 1200px) {
    .wave-transition svg { height: 160px; }
}

/* ===== MAIN CONTENT ===== */
.main-section {
    position: relative;
    z-index: 3;
    background: #fff;
}

/* Expect section - 4 cards in a row */
.expect-section {
    padding: 70px 0 60px;
}
.expect-section h2 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 30px;
    line-height: 38px;
    font-weight: 800;
    color: #1a1a1a;
}
.expect-card {
    background: #EDEDED;
    border-radius: 10px;
    padding: 28px 24px 28px 36px;
    height: 100%;
    border-left: none;
    font-size: 17px;
    line-height: 26px;
    color: #444;
    position: relative;
}
.expect-card::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 26px;
    bottom: 26px;
    width: 3px;
    border-radius: 2px;
    background: #E8663D;
}
.expect-card strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Main text + image section */
.content-section {
    padding: 60px 0 80px;
}
.content-section h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}
.content-section h2 sub {
    font-size: 28px;
    vertical-align: baseline;
    position: relative;
    top: 4px;
}
.content-section p {
    font-size: 18px;
    line-height: 32px;
    color: #000;
}
.content-section p strong {
    font-weight: 700;
}
.speaker-img {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}
.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {
    .speaker-img { height: auto; }
    .speaker-img img {
        height: auto;
    }
}

/* Form section */
.form-section {
    padding: 60px 0 80px;
    background: #fff;
}
.form-card {
    background: #EDEDED;
    border: none;
    border-radius: 16px;
    padding: 48px 60px;
    max-width: 920px;
    margin: 0 auto;
}
.form-section h2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.form-section .form-intro,
.form-section .gsection_description {
    font-size: 16px;
    line-height: 26px;
    color: #444;
    margin-bottom: 32px;
}

/* ===== GRAVITY FORMS OVERRIDES ===== */
/* Orbital theme injects inline <style> with #id[attr] selectors.
   We use .form-card to scope, and !important on every declaration. */

/* Hide "* geeft vereiste velden aan" */
.form-card .gform_required_legend { display: none !important; }
.form-card .gform_heading { display: none !important; }

/* Hide required asterisks on labels */
.form-card .gfield_required { display: none !important; }

/* Grid / field spacing */
.form-card .gform_fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 24px !important;
    padding: 0 !important;
}
.form-card .gfield { margin: 0 !important; padding: 0 !important; }
.form-card .gfield--width-half { grid-column: span 1 !important; }
.form-card .gfield--width-full { grid-column: 1 / -1 !important; }

/* Labels */
.form-card .gfield_label,
.form-card .gform-field-label {
    font-family: "Maven Pro", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin: 0 0 5px !important;
    padding: 0 !important;
    display: block !important;
    line-height: 18px !important;
}

/* Inputs – white, no border, 40px */
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    height: 40px !important;
    padding: 0 14px !important;
    font-family: "Maven Pro", sans-serif !important;
    font-size: 16px !important;
    line-height: 40px !important;
    color: #1a1a1a !important;
    width: 100% !important;
    box-shadow: none !important;
    outline: none !important;
    transition: box-shadow 0.3s !important;
}
.form-card input[type="text"]:focus,
.form-card input[type="email"]:focus,
.form-card input[type="tel"]:focus {
    box-shadow: 0 0 0 2px rgba(0, 78, 143, 0.3) !important;
    border: none !important;
    outline: none !important;
}
.form-card input::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

/* Input container – strip Orbital padding/border */
.form-card .ginput_container {
    margin: 0 !important;
    padding: 0 !important;
}

/* Checkbox row – 20px height, gap between checkbox and text */
.form-card .gfield--type-checkbox {
    padding-top: 4px !important;
    min-height: 20px !important;
}
.form-card .gfield--type-checkbox legend {
    display: none !important;
}
.form-card .gfield--type-checkbox .gchoice {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.form-card .gfield--type-checkbox .gform-field-label--type-inline {
    font-family: "Maven Pro", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.form-card .gfield-choice-input {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    border: 1px solid #ccc !important;
    border-radius: 3px !important;
    accent-color: #f27d52 !important;
    margin: 0 !important;
}

/* Submit button */
.form-card .gform_footer,
.form-card .gform-footer {
    grid-column: 1 / -1 !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
    text-align: left !important;
}
.form-card .gform_button,
.form-card input[type="submit"],
.form-card button[type="submit"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f27d52 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 22px !important;
    height: 40px !important;
    padding: 0 28px !important;
    font-family: "Maven Pro", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 40px !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: background 0.2s !important;
}
.form-card .gform_button:hover,
.form-card input[type="submit"]:hover,
.form-card button[type="submit"]:hover {
    background: #e06a3f !important;
}

/* Nuke Orbital theme variables inside .form-card */
.form-card .gform_wrapper {
    --gf-color-primary: #f27d52 !important;
    --gf-color-primary-rgb: 242, 125, 82 !important;
    --gf-color-primary-darker: #e06a3f !important;
    --gf-color-primary-lighter: #f7a07e !important;
    --gf-color-in-ctrl: #fff !important;
    --gf-color-in-ctrl-primary: #f27d52 !important;
    --gf-color-in-ctrl-primary-rgb: 242, 125, 82 !important;
    --gf-color-in-ctrl-primary-darker: #e06a3f !important;
    --gf-color-in-ctrl-primary-lighter: #f7a07e !important;
    --gf-ctrl-border-color: transparent !important;
    --gf-ctrl-label-color-primary: #333 !important;
    --gf-ctrl-label-color-secondary: #333 !important;
    --gf-radius: 6px !important;
    --gf-ctrl-size: 40px !important;
    --gf-ctrl-btn-size: 40px !important;
    --gf-ctrl-btn-border-color-secondary: transparent !important;
}

/* ===== FOOTER ===== */
.footer-simple {
    background: #fff;
    padding: 50px 0 40px;
    text-align: center;
}
.footer-simple .logo-footer { margin: 0 auto 16px; }
.footer-simple .logo-footer img { height: 51px; margin: 0 auto; }
.footer-simple .footer-link {
    color: #5AACCC;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #5AACCC;
    border-radius: 16px;
    padding: 6px 16px;
    height: 32px;
    transition: all 0.3s;
}
.footer-simple .footer-link:hover { opacity: 0.7; color: #5AACCC; }
.footer-simple .footer-link svg { width: 14px; height: 14px; stroke: #5AACCC; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-content h1 { font-size: 64px; line-height: 70px; }
    .hero-content h1 sub { font-size: 44px; }
}
@media (max-width: 991px) {
    .hero-content h1 { font-size: 48px; line-height: 54px; }
    .hero-content h1 sub { font-size: 34px; }
    .hero-content { max-width: 60%; }
    .cloud-canvas { width: 400px; height: 420px; right: 5%; }
    .expect-card { margin-bottom: 16px; }
}
@media (max-width: 767px) {
    h2 { font-size: 28px; line-height: 36px; }

    /* --- Navbar mobile --- */
    .header-inner {
        padding: 12px 0 10px;
    }
    .logo img { height: 32px; }
    .nav-right { gap: 10px; }
    .nav-right .btn-orange { font-size: 12px; padding: 7px 12px; border-radius: 18px; }
    .nav-link-vbi { display: none; }

    /* --- Hero mobile: stacked layout --- */
    .hero-scroll-wrapper { min-height: auto; }
    .hero-slide {
        padding: 0;
        align-items: flex-start;
    }
    .hero-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 0;
        padding-bottom: 40%;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 { font-size: 52px; line-height: 58px; }
    .hero-content h1 sub { font-size: 36px; top: 4px; }
    .hero-content .subtitle { font-size: 24px; line-height: 30px; }
    .hero-text-large { font-size: 40px; line-height: 48px; }

    /* Cloud: centered below text on mobile */
    .cloud-canvas {
        position: absolute;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 15%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 400px;
        height: 300px;
        opacity: 1;
    }
    .cloud-canvas img,
    .cloud-canvas canvas {
        object-fit: contain;
    }

    /* Scroll arrow on mobile */
    .scroll-arrow svg { width: 24px; height: 24px; }

    .expect-section, .content-section, .form-section { padding: 40px 0; }
    .content-section h2 { font-size: 30px; line-height: 38px; }

    /* Form: full width on mobile */
    .form-card { padding: 28px 20px; }
    .form-card .gform_fields {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .form-card input[type="text"],
    .form-card input[type="email"],
    .form-card input[type="tel"] {
        font-size: 14px !important;
        height: 42px !important;
    }
    .form-card .gform_button,
    .form-card input[type="submit"],
    .form-card button[type="submit"] {
        font-size: 15px !important;
        padding: 0 24px !important;
        width: 100% !important;
        height: 44px !important;
    }
}

/* Extra small (< 375px) */
@media (max-width: 374px) {
    .hero-content h1 { font-size: 34px; line-height: 40px; }
    .hero-content h1 sub { font-size: 24px; }
}
