﻿/* Zenen Premium PropTech CSS */
:root {
    --bg-deep: #020617;
    --primary-green: #10b981;
    --primary-dark: #047857;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(16, 185, 129, 0.15);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Organic Orbs Background (Unique Element) */
.organic-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; background: var(--bg-deep); }
.orb { position: absolute; border-radius: 50%; filter: blur(140px); animation: floatOrb 25s infinite alternate ease-in-out; }
.orb-1 { width: 50vw; height: 50vw; background: rgba(16, 185, 129, 0.15); top: -20%; left: -10%; }
.orb-2 { width: 45vw; height: 45vw; background: rgba(4, 120, 87, 0.15); bottom: -10%; right: -10%; animation-delay: -5s; }
.mesh-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 30px 30px; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.1); }
}

/* Typography */
h1, h2, h3, .brand-name { font-family: var(--font-heading); font-weight: 800; }
a { color: var(--text-light); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--primary-green); }
.text-center { text-align: center; }

/* Components */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.badge-tag { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(16, 185, 129, 0.1); border: 1px solid var(--primary-green); color: var(--primary-green); border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 1px; text-transform: uppercase; }

/* Buttons */
.btn-primary { display: inline-block; background: linear-gradient(135deg, var(--primary-green), var(--primary-dark)); color: #fff !important; padding: 1.2rem 2.5rem; border-radius: 50px; font-weight: 600; font-family: var(--font-body); border: none; cursor: pointer; transition: 0.4s; box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5); }
.btn-outline { display: inline-block; padding: 0.7rem 1.5rem; border: 1px solid var(--primary-green); color: var(--text-light); border-radius: 50px; font-weight: 600; transition: 0.3s; }
.btn-outline:hover { background: var(--primary-green); color: #fff; }
.btn-block { width: 100%; font-size: 1.1rem; }

/* Header */
.glass-header { position: fixed; width: 100%; top: 0; z-index: 1000; border-radius: 0; border-top: none; border-left: none; border-right: none; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 85px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; letter-spacing: -0.5px; }
.accent-dot { color: var(--primary-green); }
.desktop-nav { display: flex; gap: 2.5rem; align-items: center; }
.desktop-nav a { font-size: 0.95rem; font-weight: 500; }

/* Sections */
section { padding: 8rem 0; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; line-height: 1.1; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; }

/* Hero */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 100px; }
.hero-card { padding: 4rem; max-width: 800px; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.text-gradient { background: linear-gradient(90deg, var(--primary-green), #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }

/* Process / Methodology */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.process-card { padding: 3rem 2rem; position: relative; transition: 0.3s; overflow: hidden; }
.process-card:hover { border-color: var(--primary-green); transform: translateY(-5px); }
.step-number { font-family: var(--font-heading); font-size: 5rem; color: rgba(255,255,255,0.03); position: absolute; top: 10px; right: 20px; line-height: 1; font-weight: 800; }
.process-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--primary-green); }
.process-card p { color: var(--text-muted); font-size: 0.95rem; }

/* About */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text { padding: 4rem; }
.about-text p { margin-bottom: 1.5rem; color: var(--text-muted); }
.rounded-image { width: 100%; border-radius: 24px; border: 1px solid var(--glass-border); opacity: 0.85; filter: contrast(1.1); }

/* Features */
.features-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.image-wrapper { position: relative; padding: 1rem; }
.image-wrapper img { width: 100%; border-radius: 16px; display: block; }
.floating-alert { position: absolute; bottom: -20px; right: 20px; background: #0f172a; border: 1px solid var(--primary-green); padding: 1rem 1.5rem; border-radius: 12px; display: flex; align-items: center; gap: 10px; font-weight: 600; box-shadow: 0 10px 20px rgba(0,0,0,0.6); }
.floating-alert i { color: var(--primary-green); }
.feature-list { list-style: none; margin-top: 2.5rem; }
.feature-list li { display: flex; gap: 20px; margin-bottom: 2rem; }
.feature-icon { font-size: 1.8rem; color: var(--primary-green); margin-top: 5px; }
.feature-list h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.feature-list p { color: var(--text-muted); font-size: 0.95rem; }

/* Form Section */
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem; }
.trust-indicators { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; color: var(--primary-green); font-size: 0.9rem; font-weight: 600; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
input { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--primary-green); background: rgba(0,0,0,0.5); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 2rem; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-group input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--primary-green); }
.checkbox-group a { color: var(--primary-green); text-decoration: underline; }
.success-box { text-align: center; padding: 2rem; border: 1px solid var(--primary-green); border-radius: 8px; background: rgba(16, 185, 129, 0.1); color: var(--primary-green); margin-top: 1rem; }

/* FAQ */
.accordion-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { padding: 1.5rem 2rem; cursor: pointer; }
.faq-item summary { font-weight: 600; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--primary-green); transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); }

/* Footer */
.main-footer { border-radius: 0; border-bottom: none; border-left: none; border-right: none; padding: 5rem 0 2rem; margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.company-address { margin: 1.5rem 0; color: var(--text-muted); line-height: 1.8; }
.contact-info p { margin-bottom: 0.5rem; color: var(--text-muted); }
.contact-info i { color: var(--primary-green); margin-right: 10px; }
.footer-nav { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.footer-nav a { color: var(--text-muted); }
.footer-nav a:hover { color: var(--primary-green); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; color: #64748b; font-size: 0.85rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 700px; padding: 1.5rem 2rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; }
.cookie-content { font-size: 0.85rem; color: var(--text-muted); }

/* Legal Pages Overrides */
.legal-main { padding-top: 130px; padding-bottom: 80px; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 5rem; background: #ffffff; color: #0f172a; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.legal-card h1 { font-size: 2.2rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 1rem; margin-bottom: 2rem; color: #0f172a; }
.legal-card h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--primary-dark); font-family: var(--font-body); }
.legal-card p, .legal-card li { color: #334155; margin-bottom: 1rem; line-height: 1.8; }
.legal-card ul { margin-left: 2rem; margin-bottom: 1.5rem; }
.legal-card a { color: var(--primary-dark); font-weight: 600; }

/* Responsive */
@media (max-width: 992px) {
    .about-layout, .features-grid, .form-layout, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .input-row { grid-template-columns: 1fr; }
    .desktop-nav { display: none; } /* Hide on mobile to focus on CTA */
    .hero-card, .form-layout { padding: 2rem; }
    .floating-alert { position: relative; bottom: auto; right: auto; margin-top: -10px; display: inline-flex; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .legal-card { padding: 2.5rem; }
}
