.survey-page { color: var(--text-body); padding-bottom: 4rem; }
.hero-survey { position: relative; padding: 8rem 0 5rem; background: transparent; overflow: hidden; }
.hero-survey::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: var(--glow-yellow); border-radius: 50%; animation: pulse 6s ease-in-out infinite; filter: blur(50px); }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; } 50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.3; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary-yellow); font-size: 0.95rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--primary-yellow); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; color: var(--text-heading); transition: color var(--trans); }
.hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 800px; line-height: 1.8; }

.custom-breadcrumb { background: var(--bg-card); border: 1px solid var(--border-soft); padding: 1rem 1.5rem; border-radius: 12px; margin-bottom: 3rem; }
.custom-breadcrumb a { color: var(--primary-yellow); text-decoration: none; font-weight: 600; transition: opacity 0.3s; }
.custom-breadcrumb a:hover { opacity: 0.7; }
.custom-breadcrumb .separator { color: var(--text-muted); margin: 0 0.5rem; }
.custom-breadcrumb .current { color: var(--text-heading); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.info-mini-card { background: var(--bg-card-2); border: 1px solid var(--border-soft); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.4s ease; }
.info-mini-card:hover { transform: translateY(-5px); border-color: var(--primary-yellow); box-shadow: 0 15px 40px var(--glow-yellow); }
.info-mini-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-soft) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 8px 20px rgba(241,196,15,0.2); color:#000; }
.info-mini-card h5 { color: var(--text-heading); font-weight: 700; margin-bottom: 0.5rem; font-size: 1.1rem; }
.info-mini-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6; }

.form-container { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 24px; padding: 3rem; position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.05); margin-bottom: 3rem; transition: all 0.4s ease; }
.form-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--yellow-soft) 100%); }
.form-container:hover { border-color: var(--primary-yellow); box-shadow: 0 30px 80px var(--glow-yellow); }
.section-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-soft) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(241,196,15,0.2); margin-bottom: 2rem; color:#000;}
.section-label { font-size: 0.9rem; color: var(--primary-yellow); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text-heading); margin-bottom: 1rem; }
.section-text { font-size: 1.05rem; line-height: 1.8; color: var(--text-body); margin-bottom: 2rem; }

.iframe-wrapper { background: var(--bg-main); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 1px solid var(--border-soft); height: 800px; }
.iframe-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) { .hero-survey { padding: 5rem 0 3rem; } .form-container { padding: 2rem 1.5rem; } .iframe-wrapper { height: 700px; } }