﻿@import url('https://fonts.googleapis.css2?family=Space+Grotesk:wght@400;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500&display=swap');

:root {
    --primary: #2E1065;      /* Deep Purple */
    --primary-light: #4C1D95;
    --secondary: #F97316;    /* Vibrant Orange */
    --accent: #D946EF;       /* Fuchsia */
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --white: #FFFFFF;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font { font-family: 'Space Grotesk', sans-serif; color: var(--primary); }

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

.wrapper { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 5%; }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #E2E8F0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.brand img { width: 45px; height: 45px; }
.nav-menu { display: flex; gap: 2.5rem; }
.nav-menu a { font-weight: 500; }
.nav-menu a:hover { color: var(--secondary); }

.cta-button {
    background: var(--secondary);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-button:hover { background: transparent; color: var(--secondary); }

/* Hero Section */
.hero-block {
    padding: 180px 0 120px;
    background: var(--bg-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-block::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero-content h1 { font-size: 4.5rem; color: var(--white); line-height: 1.05; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: -1px; }
.hero-content h1 span { color: var(--secondary); }
.hero-content p { font-size: 1.2rem; color: #CBD5E1; margin-bottom: 2.5rem; max-width: 600px; }

/* Stats (Random Section 1) */
.stats-banner { background: var(--primary); padding: 4rem 0; color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--accent); margin-bottom: 0.5rem; }
.stat-item p { font-size: 1.1rem; font-weight: 500; }

/* About */
.about-section { padding: 120px 0; background: var(--white); }
.about-header { font-size: 3.5rem; margin-bottom: 2rem; max-width: 900px; line-height: 1.1; }
.about-text { font-size: 1.25rem; color: var(--text-muted); max-width: 800px; border-left: 4px solid var(--accent); padding-left: 2rem; }

/* Asymmetric Features */
.features-section { padding: 100px 0; }
.features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-copy h2 { font-size: 3rem; margin-bottom: 2rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
.f-item { background: var(--white); padding: 1.5rem; border: 1px solid #E2E8F0; border-left: 4px solid var(--secondary); }
.f-item h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-visual img { width: 100%; height: auto; object-fit: cover; border-radius: 0; box-shadow: -20px 20px 0 var(--primary); }

/* Process (Random Section 2) */
.process-section { padding: 100px 0; background: var(--bg-dark); color: var(--white); }
.process-section h2 { color: var(--white); text-align: center; font-size: 3rem; margin-bottom: 4rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.process-card { background: rgba(255,255,255,0.05); padding: 3rem; border: 1px solid rgba(255,255,255,0.1); position: relative; }
.process-card .step { position: absolute; top: -20px; left: -20px; background: var(--secondary); color: var(--white); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-size: 1.5rem; font-weight: 700; }
.process-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.5rem; }

/* Lead Form Section */
.lead-section { padding: 120px 0; background: var(--white); }
.lead-box { max-width: 700px; margin: 0 auto; background: var(--bg-light); padding: 4rem; border: 1px solid #E2E8F0; position: relative; }
.lead-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--secondary), var(--accent)); }
.lead-box h2 { font-size: 2.5rem; text-align: center; margin-bottom: 1rem; }
.lead-box p { text-align: center; color: var(--text-muted); margin-bottom: 3rem; }

.form-row { margin-bottom: 1.5rem; }
.form-row label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary); }
.input-field { width: 100%; padding: 1rem; border: 2px solid #E2E8F0; font-family: inherit; font-size: 1rem; background: var(--white); transition: border-color 0.3s; }
.input-field:focus { outline: none; border-color: var(--primary); }
.check-row { display: flex; gap: 1rem; align-items: flex-start; margin: 2rem 0; font-size: 0.9rem; color: var(--text-muted); }
.check-row input { margin-top: 4px; transform: scale(1.2); }
.submit-btn { width: 100%; font-size: 1.2rem; padding: 1.2rem; justify-content: center; background: var(--primary); color: var(--white); border: none; }
.submit-btn:hover { background: var(--primary-light); color: var(--white); }

/* FAQ */
.faq-section { padding: 100px 0; background: var(--bg-light); }
.faq-section h2 { text-align: center; font-size: 3rem; margin-bottom: 3rem; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 1rem; border: 1px solid #E2E8F0; }
.faq-item summary { padding: 1.5rem; font-family: 'Space Grotesk'; font-size: 1.2rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--secondary); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--text-muted); }

/* Legal Layout */
.page-header { padding: 180px 0 80px; background: var(--bg-dark); color: var(--white); text-align: center; }
.page-header h1 { color: var(--white); font-size: 3.5rem; }
.legal-content { padding: 80px 0; background: var(--white); }
.doc-box { max-width: 900px; margin: 0 auto; }
.doc-box h2 { margin: 2.5rem 0 1rem; font-size: 1.8rem; border-bottom: 2px solid #E2E8F0; padding-bottom: 0.5rem; }
.doc-box p { margin-bottom: 1rem; text-align: justify; }
.doc-box ul { margin-left: 2rem; margin-bottom: 1.5rem; list-style-type: square; }

/* Contact Specific */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: -50px; position: relative; z-index: 10; }
.contact-details { background: var(--white); padding: 4rem; border: 1px solid #E2E8F0; border-top: 6px solid var(--secondary); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.contact-details h3 { font-size: 2rem; margin-bottom: 2rem; }
.c-info { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.c-info i { font-size: 1.8rem; color: var(--secondary); }
.c-info strong { display: block; font-family: 'Space Grotesk'; font-size: 1.1rem; color: var(--primary); margin-bottom: 0.25rem; }
.map-box { background: #E2E8F0; min-height: 500px; width: 100%; border: 1px solid #E2E8F0; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #94A3B8; padding: 5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-cols h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.5rem; }
.f-links li { margin-bottom: 1rem; }
.f-links a:hover { color: var(--secondary); }
.footer-copy { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Cookie Consent */
.cookie-bar { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 800px; background: var(--primary); color: var(--white); padding: 1.5rem 2rem; border-radius: 8px; display: none; justify-content: space-between; align-items: center; z-index: 9999; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.cookie-text p { font-size: 0.9rem; margin-right: 2rem; }
.cookie-actions { display: flex; gap: 1rem; flex-shrink: 0; }
.btn-alt { background: transparent; border: 1px solid var(--white); color: var(--white); padding: 0.6rem 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-alt:hover { background: rgba(255,255,255,0.1); }
.btn-accept { background: var(--secondary); border: 1px solid var(--secondary); color: var(--white); padding: 0.6rem 1.2rem; cursor: pointer; transition: 0.3s; font-weight: 600; }

/* Mobile */
@media(max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .stats-grid, .features-layout, .process-grid, .contact-wrapper, .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
    .nav-menu { display: none; }
    .cookie-bar { flex-direction: column; gap: 1.5rem; text-align: center; }
    .cookie-text p { margin-right: 0; }
}
