﻿:root {
    --primary-bg: #0B132B;
    --accent: #00A86B;
    --text-light: #F4F6F8;
    --text-dark: #1A1A1A;
    --card-bg: #ffffff;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--text-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Unique Animated Blob */
.bg-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,168,107,0.3) 0%, rgba(11,19,43,0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 10s infinite alternate;
}
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.2); }
}

header {
    background: var(--primary-bg);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { color: var(--text-light); font-size: 1.5rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 10px;}
.logo i { color: var(--accent); font-size: 2rem;}
nav ul { display: flex; gap: 2rem; list-style: none; }
nav a { color: var(--text-light); text-decoration: none; font-weight: 500; transition: var(--transition); }
nav a:hover { color: var(--accent); }

/* Typography */
h1 { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.1; font-weight: 700; color: var(--primary-bg); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--primary-bg); margin-bottom: 2rem; }

/* Hero Section */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 8rem 5% 5rem; position: relative; }
.hero-content p { font-size: 1.25rem; margin-bottom: 2rem; color: #444; }
.btn {
    display: inline-block; background: var(--accent); color: var(--primary-bg); font-weight: 700;
    padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
    font-size: 1.2rem; transition: var(--transition); box-shadow: 0 10px 20px rgba(0,168,107,0.2);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,168,107,0.4); }
.hero-img { border-radius: 30px; overflow: hidden; box-shadow: 20px 20px 0 var(--primary-bg); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Random Philosophy Section */
.philosophy { background: var(--primary-bg); color: var(--text-light); padding: 6rem 5%; text-align: center; }
.philosophy h2 { color: var(--text-light); }
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; }
.phil-card { background: rgba(255,255,255,0.05); padding: 3rem; border-radius: 20px; border-top: 4px solid var(--accent); }
.phil-card i { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; }

/* Asymmetrical Features */
.features { padding: 8rem 5%; display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: center; }
.feat-img { border-radius: 20px; box-shadow: -20px -20px 0 var(--accent); width: 100%; }
.feat-list { list-style: none; }
.feat-list li { font-size: 1.2rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 15px; }
.feat-list i { color: var(--accent); font-size: 1.5rem; background: rgba(0,168,107,0.1); padding: 10px; border-radius: 50%; }

/* Lead Form Section */
.lead-section { background: #e8ecef; padding: 6rem 5%; display: flex; justify-content: center; }
.form-container { background: var(--card-bg); padding: 4rem; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.08); max-width: 800px; width: 100%; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-group input { width: 100%; padding: 1rem; border: 2px solid #ddd; border-radius: 10px; font-family: inherit; font-size: 1rem; transition: var(--transition);}
.form-group input:focus { border-color: var(--accent); outline: none; }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 2rem; font-size: 0.9rem; color: #555;}
.checkbox-group input { width: auto; margin-top: 4px; }
.btn-submit { width: 100%; padding: 1.2rem; font-size: 1.2rem; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.success-msg { display: none; text-align: center; color: var(--primary-bg); }
.success-msg i { font-size: 4rem; color: var(--accent); margin-bottom: 1rem; }

/* FAQ */
.faq { padding: 6rem 5%; max-width: 900px; margin: 0 auto; }
details { background: var(--card-bg); margin-bottom: 1rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; }
summary { padding: 1.5rem; font-size: 1.2rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); }
details[open] summary::after { content: '-'; }
.faq-content { padding: 0 1.5rem 1.5rem; color: #555; }

/* Legal Pages Styling */
.legal-container { max-width: 1000px; margin: 4rem auto; background: var(--card-bg); padding: 4rem; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.legal-container h1 { font-size: 2.5rem; border-bottom: 3px solid var(--accent); padding-bottom: 1rem; margin-bottom: 2rem; }
.legal-container h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; }
.legal-container p, .legal-container ul { margin-bottom: 1rem; color: #444; }
.legal-container ul { padding-left: 2rem; }
.legal-container iframe { width: 100%; height: 400px; border-radius: 10px; border: none; margin-top: 2rem; }

/* Footer */
footer { background: var(--primary-bg); color: #888; padding: 4rem 5% 2rem; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-links a { color: #888; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--primary-bg); color: var(--text-light); padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.5s ease; box-shadow: 0 -10px 30px rgba(0,0,0,0.2); }
.cookie-banner.show { bottom: 0; }
.cookie-banner p { max-width: 70%; font-size: 0.9rem; }
.cookie-banner .btn { padding: 0.8rem 1.5rem; font-size: 1rem; }

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero, .features { grid-template-columns: 1fr; gap: 2rem; text-align: center; padding: 4rem 5%; }
    .hero-img { box-shadow: none; margin-top: 2rem; }
    .feat-img { box-shadow: none; order: -1; }
    .feat-list li { justify-content: center; text-align: left; }
    nav ul { display: none; } /* Simple mobile handled via scrolling mostly */
    .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
    .cookie-banner p { max-width: 100%; }
    .legal-container { padding: 2rem; margin: 2rem 5%; }
}
