﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --color-bg: #fdfdfd;
    --color-surface: #ffffff;
    --color-dark: #0B132B;
    --color-dark-muted: #1C2541;
    --color-gold: #D4AF37;
    --color-gold-hover: #b5952f;
    --color-text: #333333;
    --color-text-light: #666666;
    --shadow-elegant: 0 25px 50px -12px rgba(11, 19, 43, 0.15);
    --border-radius-asym: 40px 0 40px 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--color-bg); color: var(--color-text); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--color-dark); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Unique Graphical Background Element */
.abstract-geometry {
    position: fixed; top: 0; right: 0; width: 50vw; height: 100vh; z-index: -1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; background: var(--color-bg); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.05); }
.logo { display: flex; align-items: center; gap: 1rem; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.8rem; color: var(--color-dark); letter-spacing: 1px; }
.logo img { width: 40px; height: 40px; }
nav ul { display: flex; gap: 3rem; }
nav a { font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1.5px; position: relative; }
nav a::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 0; background-color: var(--color-gold); transition: width 0.3s; }
nav a:hover::after { width: 100%; }

/* Hero Section */
.hero { padding: 8rem 5% 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1400px; margin: 0 auto; }
.hero-content h1 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 2rem; color: var(--color-dark); }
.hero-content p { font-size: 1.2rem; color: var(--color-text-light); margin-bottom: 3rem; max-width: 500px; }
.hero-btn { display: inline-block; padding: 1.2rem 3rem; background: var(--color-dark); color: var(--color-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 2px; border: 1px solid var(--color-gold); transition: all 0.3s; }
.hero-btn:hover { background: var(--color-gold); color: var(--color-dark); }
.hero-image-wrapper { position: relative; }
.hero-image-wrapper::before { content: ''; position: absolute; top: -20px; right: -20px; bottom: 20px; left: 20px; border: 2px solid var(--color-gold); z-index: -1; border-radius: var(--border-radius-asym); }
.hero-image-wrapper img { border-radius: var(--border-radius-asym); box-shadow: var(--shadow-elegant); height: 600px; object-fit: cover; width: 100%; }

/* About Section */
.about { padding: 8rem 5%; background: var(--color-dark); color: var(--color-bg); }
.about-container { max-width: 1000px; margin: 0 auto; text-align: center; }
.about h2 { color: var(--color-gold); font-size: 3rem; margin-bottom: 2rem; }
.about p { font-size: 1.2rem; color: #a0aabf; margin-bottom: 2rem; font-weight: 300; }

/* Features (Asymmetrical layout) */
.features { padding: 8rem 5%; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.features-image img { border-radius: 0 50px 0 50px; box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2); width: 100%; height: 550px; object-fit: cover; }
.features-text h2 { font-size: 3.5rem; margin-bottom: 2rem; line-height: 1.1; }
.features-list { margin-top: 3rem; }
.features-list li { margin-bottom: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.features-list i { color: var(--color-gold); font-size: 1.8rem; margin-top: 0.3rem; }
.features-list h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.features-list p { color: var(--color-text-light); }

/* Strategy Section (Random Unique Block) */
.strategy { padding: 6rem 5%; background: #f4f5f7; text-align: center; }
.strategy h2 { font-size: 3rem; margin-bottom: 4rem; }
.strategy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }
.strategy-card { background: var(--color-surface); padding: 4rem 2rem; border-top: 3px solid var(--color-gold); box-shadow: var(--shadow-elegant); }
.strategy-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--color-dark); }

/* Lead Form Section (High Value) */
.investor-form-section { padding: 8rem 5%; max-width: 1000px; margin: 0 auto; }
.form-container { background: var(--color-surface); padding: 5rem; border-radius: 2px; box-shadow: var(--shadow-elegant); border: 1px solid rgba(0,0,0,0.05); position: relative; }
.form-container::before { content: ''; position: absolute; top: 0; left: 0; width: 10px; height: 100%; background: var(--color-gold); }
.form-header { text-align: center; margin-bottom: 3rem; }
.form-header h2 { font-size: 2.8rem; margin-bottom: 1rem; }
.form-header p { color: var(--color-text-light); font-size: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--color-dark); text-transform: uppercase; letter-spacing: 1px; }
.form-group input { width: 100%; padding: 1.2rem; border: 1px solid #ddd; background: #fcfcfc; font-family: 'Montserrat', sans-serif; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus { outline: none; border-color: var(--color-gold); background: var(--color-surface); }
.checkbox-group { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2.5rem; }
.checkbox-group input { margin-top: 0.4rem; transform: scale(1.2); }
.checkbox-group label { font-size: 0.85rem; color: var(--color-text-light); }
.submit-btn { width: 100%; background: var(--color-dark); color: var(--color-gold); border: none; padding: 1.5rem; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.3s; font-family: 'Montserrat', sans-serif; }
.submit-btn:hover { background: var(--color-gold); color: var(--color-dark); }
.success-msg { display: none; text-align: center; padding: 4rem 2rem; }
.success-msg i { font-size: 5rem; color: var(--color-gold); margin-bottom: 2rem; }
.success-msg h3 { font-size: 2rem; margin-bottom: 1rem; }

/* FAQ Section */
.faq { padding: 4rem 5% 8rem; max-width: 900px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 3rem; margin-bottom: 3rem; }
details { margin-bottom: 1.5rem; border-bottom: 1px solid #ddd; }
summary { padding: 1.5rem 0; font-weight: 600; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--color-dark); list-style: none; font-family: 'Playfair Display', serif; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--color-gold); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 0 1.5rem 0; color: var(--color-text-light); }

/* Legal Layout */
.legal-main { padding: 8rem 5%; max-width: 1000px; margin: 0 auto; }
.legal-card { background: var(--color-surface); padding: 5rem; box-shadow: var(--shadow-elegant); border-top: 4px solid var(--color-gold); }
.legal-card h1 { font-size: 3rem; margin-bottom: 2rem; border-bottom: 1px solid #eee; padding-bottom: 1rem; }
.legal-card h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.legal-card p, .legal-card ul { margin-bottom: 1.2rem; color: var(--color-text-light); }
.legal-card ul { padding-left: 2rem; list-style-type: square; }
.map-container { width: 100%; height: 400px; margin-top: 3rem; border: 1px solid #eee; }

/* Footer */
footer { background: var(--color-dark); color: #fff; padding: 6rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; max-width: 1400px; margin: 0 auto 4rem; }
.footer-col h3 { color: var(--color-gold); margin-bottom: 2rem; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }
.footer-col ul li { margin-bottom: 1rem; color: #a0aabf; }
.footer-col a:hover { color: var(--color-gold); }
.disclaimer { font-size: 0.8rem; color: #5a6b8c; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: justify; margin-bottom: 2rem; }
.footer-bottom { text-align: center; color: #a0aabf; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 700px; background: var(--color-surface); box-shadow: 0 10px 40px rgba(0,0,0,0.2); padding: 2rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; border-left: 5px solid var(--color-gold); }
.cookie-text p { font-size: 0.9rem; color: var(--color-text-light); }
.cookie-text a { color: var(--color-dark); font-weight: 600; text-decoration: underline; }
.cookie-btn { background: var(--color-dark); color: var(--color-gold); border: none; padding: 1rem 2rem; font-weight: 600; cursor: pointer; text-transform: uppercase; transition: background 0.3s; }
.cookie-btn:hover { background: var(--color-gold); color: var(--color-dark); }

/* Responsive */
@media (max-width: 1024px) {
    .hero, .features { grid-template-columns: 1fr; gap: 4rem; }
    .hero-image-wrapper img { height: 400px; }
    .features-image { order: -1; }
    .features-image img { border-radius: var(--border-radius-asym); height: 400px; }
}
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero { padding: 6rem 5% 4rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .form-container, .legal-card { padding: 2.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; text-align: center; }
}
