:root {
    --hero-bg: #0e1525;
    --hero-text: #ffffff;
    --cta-bg: #00c38c;
    --cta-text: #ffffff;
    --testi-bg: #f1fbf7;
    --benefits-accent: #00d084;
    --benefit-icon-bg: #f5f3ff;
}

.phoenix-page-wrapper { 
    overflow-x: hidden; 
    width: 100%; 
    position: relative; 
    font-family: 'Poppins', sans-serif; 
    background-color: #ffffff; 
}

/* --- HERO --- */
.phoenix-hero { background-color: var(--hero-bg); color: var(--hero-text); padding: 80px 0 0 0; margin-top: -30px; display: flex; justify-content: center; overflow: hidden; width: 100%; }
.hero-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; gap: 50px; }
.hero-text { flex: 1.3; max-width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.hero-text h1 { font-size: 52px; font-weight: 700; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.hero-features { list-style: none; padding: 0; margin: 0 0 40px 0; width: 100%; }
.hero-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 18px; margin-bottom: 16px; color: var(--hero-text); font-weight: 500; }
.hero-features__icon { flex-shrink: 0; margin-top: 3px; color: var(--cta-bg); display: inline-flex; }

.hero-cta-container { width: 100%; margin-bottom: 40px; }
.hero-cta-row { display: flex; align-items: flex-start; gap: 25px; flex-wrap: wrap; }
.btn-column { display: flex; flex-direction: column; align-items: flex-start; }
.btn-green { background-color: var(--cta-bg); color: var(--cta-text) !important; height: 56px; display: flex; align-items: center; justify-content: center; padding: 0 35px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 16px; transition: 0.3s; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-subtext { font-size: 14px; color: #94a3b8; margin-top: 8px; width: 100%; text-align: center; }

/* --- RATING STYLE --- */
.google-badge { display: flex; align-items: center; gap: 8px; background: transparent; height: auto; padding: 0; border: none; }
.trust-star { color: #00b67a; font-size: 24px; line-height: 1; }
.google-badge img { width: 22px; height: 22px; }
.stars { color: #ffb400; font-size: 18px; letter-spacing: 1px; display: flex; align-items: center; }
.google-badge-text { font-size: 15px; color: #ffffff; margin-left: 5px; }
.google-badge-text strong { font-weight: 500; }

@media (min-width: 993px) {
    .google-badge { gap: 15px; height: 56px; }
    .google-badge img { width: 30px; height: 30px; }
    .stars { font-size: 24px; }
    .google-badge-text { font-size: 18px; }
    .trust-star { font-size: 32px; }
}

.hero-image-container { flex: 1; display: flex; justify-content: flex-end; align-self: flex-end; }
.hero-image-container img { width: 100%; max-width: 520px; height: auto; display: block; }

/* --- TESTIMONIAL SPLIT --- */
.section-testimonial-split { background-color: #ffffff; padding: 100px 20px; width: 100%; }
.testimonial-split-container { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 80px; margin-top: -100px; z-index:55; }
.testimonial-split-text { flex: 1; text-align: left; }
.testimonial-split-text h2 { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 30px; text-align: left; }
.testimonial-checklist { list-style: none; padding: 0; margin-top: 30px; }
.testimonial-checklist li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; font-size: 18px; color: #4b5563; text-align: left; }
.testimonial-checklist .check-icon { color: var(--cta-bg); flex-shrink: 0; margin-top: 4px; }

.testimonial-split-card { flex: 1; }
.testimonial-video-container { background-color: var(--cta-bg); border-radius: 12px; }
.testimonial-video-full { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 10px; background: #000; transform: translate(20px, -20px); z-index: 2; }
.testimonial-video-full iframe, .testimonial-video-full video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; object-fit: cover; }

/* --- BENEFITS SECTION --- */
.benefit-custom-section { padding: 100px 20px 80px 20px !important; background-color: #ffffff; width: 100%; }
.benefit-custom-container { max-width: 1300px; margin: 0 auto; }
.benefit-custom-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; row-gap: 60px; }
.benefit-custom-item { 
    display: flex; align-items: flex-start; gap: 30px; opacity: 0; 
    transform: translate3d(-40px, 0, 0); will-change: transform, opacity; 
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.7s ease-out; 
}
.benefit-custom-item.reveal { opacity: 1; transform: translate3d(0, 0, 0); }
.benefit-custom-icon-wrapper { 
    flex-shrink: 0; width: 80px; height: 80px; background-color: var(--benefit-icon-bg); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
}
.benefit-custom-icon-wrapper .icon-mask { 
    width: 38px; height: 38px; background-color: var(--benefits-accent); 
    -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; 
}
.benefit-custom-title { font-size: 24px; font-weight: 700; color: #2d2d2d; margin: 0 0 12px 0 !important; }
.benefit-custom-desc { font-size: 17px; line-height: 1.7; color: #666; margin: 0; }

/* --- GALLERY --- */
.hp-gallery-wrapper { padding: 60px 20px 100px 20px; max-width: 1200px; margin: 0 auto; }
.hp-gallery-header { text-align: center; margin-bottom: 50px; }
.hp-gallery-header h2 { font-size: 40px; font-weight: 700; color: #0b1120; margin-bottom: 15px; }
.hp-gallery-header p { font-size: 18px; color: #555; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.hp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hp-grid-item { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; cursor: pointer; background: #f3f4f6; }
.hp-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.hp-grid-item:hover img { transform: scale(1.08); }

#hpLightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 99999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
#hpLightboxImg { max-width: 90%; max-height: 85vh; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.hp-close { position: absolute; top: 30px; right: 30px; background: #fff; color: #000; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: bold; cursor: pointer; z-index: 1001; }
.hp-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; background: #fff; color: #000; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hp-prev { left: 40px; }
.hp-next { right: 40px; }

/* --- HOME FAQ --- */
.home-faq-wrapper { width: 100%; background-color: #ffffff; padding: 20px 0; }
.home-faq-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; font-family: 'Poppins', sans-serif; }
.home-faq-title { font-size: 36px; font-weight: 700; margin-bottom: 50px; color: #000; text-align: center; }
.home-faq-item { background: #fff; border: 1px solid #f0f0f0; margin-bottom: 12px; border-radius: 4px; overflow: hidden; }
.home-faq-question { cursor: pointer; display: flex; align-items: center; padding: 22px 30px; font-weight: 700; font-size: 18px; color: #000; user-select: none; position: relative; }
.home-faq-question::before { content: ''; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 7px solid #000; margin-right: 20px; transition: 0.2s; }
.home-faq-item.active .home-faq-question::before { transform: rotate(90deg); }
.home-faq-answer { display: none; color: #555; line-height: 1.6; padding: 0 30px 25px 57px; border-top: 1px solid #f9f9f9; }
.home-faq-item.active .home-faq-answer { display: block; }

/* --- ARROWS --- */
.template-arrow-wrapper { height: 60px; display: flex; justify-content: center; position: relative; z-index: 50; pointer-events: none; margin-top: -30px; }
.template-arrow-mask { width: 100%; max-width: 800px; height: 200px; background-color: var(--cta-bg); -webkit-mask: url('https://test.voorontwerpsite1.be/wp-content/uploads/2026/01/greenarrow_down.png') no-repeat center / contain; mask: url('https://test.voorontwerpsite1.be/wp-content/uploads/2026/01/greenarrow_down.png') no-repeat center / contain; position: absolute; top: 0; }
.benefit-arrow-color .template-arrow-mask { background-color: var(--benefits-accent); }
.first-arrow-adjustment { margin-top: -150px !important; height: 90px; z-index: 60; }
.overlap-container { position: relative; z-index: 10; background-color: #ffffff; margin-top: 50px; }
.second-arrow-adjustment { margin-top: 0 !important; top: 20px; height: 90px; z-index: 60; }
.landing { margin-top: 10px;}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
    .hero-text { align-items: center; }
    .hero-text h1 { font-size: 34px; }
    .hero-cta-row { flex-direction: column; align-items: center; gap: 15px; }
    .google-badge { flex-direction: column; gap: 8px; text-align: center; }
    .google-badge img, .trust-star { display: none !important; }
    .stars { font-size: 32px; animation: starPulse 2.5s infinite ease-in-out; }
    .google-badge-text { font-size: 13px; margin-left: 0; color: #e2e8f0; }
    .btn-green { width: 100%; max-width: 280px; }
    .testimonial-split-container { flex-direction: column; gap: 40px; }
    .benefit-custom-grid { grid-template-columns: 1fr; }
    .benefit-custom-item { flex-direction: column; align-items: center; text-align: center; transform: translate3d(0, 40px, 0); }
    .hp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.second-arrow-adjustment { margin-top: 0 !important; top: -40px; height: 90px; z-index: 60; }
}

@keyframes starPulse {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.08); filter: brightness(1.2); }
    100% { transform: scale(1); filter: brightness(1); }
}

@media (max-width: 480px) { 
    .hp-grid { grid-template-columns: 1fr !important; gap: 20px; } 
}