﻿:root {
    --primary: #0F172A;     /* Slate 900 */
    --secondary: #0284C7;   /* Sky 600 */
    --accent: #F59E0B;      /* Amber 500 */
    --bg-light: #F8FAFC;    /* Slate 50 */
    --text-main: #334155;   /* Slate 700 */
    --text-muted: #64748B;  /* Slate 500 */
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1 { font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1.5px; }
h2 { font-size: clamp(2.5rem, 4vw, 3.8rem); margin-bottom: 1.5rem; line-height: 1.2; letter-spacing: -1px; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1.2rem 2.5rem; font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); border-radius: 8px; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-primary { background-color: var(--secondary); color: var(--white); box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3); }
.btn-primary:hover { background-color: #0369A1; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4); }
.btn-accent { background-color: var(--accent); color: var(--primary); }
.btn-accent:hover { background-color: #D97706; transform: translateY(-3px); }

/* Header */
header { background: var(--white); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 0.8rem; letter-spacing: -0.5px; }
.logo img { width: 45px; }
nav ul { display: flex; gap: 2.5rem; }
nav a { font-weight: 600; font-size: 1.05rem; }
nav a:hover { color: var(--secondary); }

/* Containers */
.container { max-width: 1300px; margin: 0 auto; padding: 6rem 5%; }

/* Hero Section */
.hero { background: var(--primary); color: var(--white); padding: 9rem 5%; text-align: left; position: relative; overflow: hidden; }
.hero-content { max-width: 800px; position: relative; z-index: 2; }
.hero h1 { color: var(--white); }
.hero p { color: #94A3B8; font-size: 1.3rem; margin-bottom: 2.5rem; max-width: 700px; }
.hero-shape { position: absolute; right: -5%; top: -20%; width: 600px; height: 600px; background: linear-gradient(135deg, var(--secondary), var(--accent)); border-radius: 50%; filter: blur(100px); opacity: 0.15; z-index: 1; }

/* Random 1: Global Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: -4rem; position: relative; z-index: 10; padding: 0 5%; max-width: 1300px; margin-left: auto; margin-right: auto; }
.stat-card { background: var(--white); padding: 3rem 2rem; border-radius: 16px; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06); text-align: center; border-bottom: 4px solid var(--accent); }
.stat-card i { font-size: 2.8rem; color: var(--secondary); margin-bottom: 1.5rem; }
.stat-card h3 { font-size: 3.5rem; margin-bottom: 0.5rem; color: var(--primary); line-height: 1; }

/* About */
.about { text-align: center; }
.about h2 { max-width: 900px; margin: 0 auto 2rem; }

/* Features (Asymmetrical) */
.features-container { display: flex; align-items: center; gap: 5rem; margin-bottom: 8rem; }
.features-container:nth-child(even) { flex-direction: row-reverse; }
.feature-img { flex: 1; position: relative; }
.feature-img img { width: 100%; height: 550px; object-fit: cover; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.feature-shape { position: absolute; width: 100%; height: 100%; border: 3px solid var(--secondary); border-radius: 20px; top: 25px; left: -25px; z-index: -1; }
.features-container:nth-child(even) .feature-shape { left: 25px; }
.feature-text { flex: 1; }
.feature-text ul { margin-top: 2rem; }
.feature-text ul li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; font-size: 1.15rem; font-weight: 500; }
.feature-text ul li i { color: var(--accent); font-size: 1.5rem; margin-top: 0.2rem; }

/* Form Section */
.lead-section { background: var(--bg-light); padding: 6rem 5%; }
.lead-wrapper { max-width: 1000px; margin: 0 auto; background: var(--white); border-radius: 24px; box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08); display: flex; overflow: hidden; }
.lead-info { background: var(--primary); color: var(--white); padding: 4rem; flex: 1; }
.lead-info h2 { color: var(--white); font-size: 2.5rem; }
.lead-info p { color: #94A3B8; }
.lead-form-box { padding: 4rem; flex: 1.2; }
.form-group { margin-bottom: 1.5rem; }
.form-group input { width: 100%; padding: 1.2rem; border: 1px solid #CBD5E1; border-radius: 8px; font-family: var(--font-body); font-size: 1rem; outline: none; transition: all 0.3s ease; }
.form-group input:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1); }
.checkbox-group { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.checkbox-group input { width: 22px; height: 22px; margin-top: 0.2rem; cursor: pointer; accent-color: var(--secondary); }
.checkbox-group label { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.lead-form-box .btn { width: 100%; }

#successMessage { display: none; text-align: center; padding: 2rem 0; }
#successMessage i { font-size: 4rem; color: #10B981; margin-bottom: 1rem; }

/* Random 2: Map placeholder */
.global-reach { background: var(--primary); padding: 8rem 5%; text-align: center; color: var(--white); }
.global-reach h2 { color: var(--white); }
.reach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1000px; margin: 4rem auto 0; }
.reach-item { padding: 2rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; }
.reach-item i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--white); margin-bottom: 1.2rem; border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.03); cursor: pointer; border: 1px solid #E2E8F0; transition: all 0.3s ease; }
details[open] { border-color: var(--secondary); }
summary { font-size: 1.25rem; font-weight: 700; color: var(--primary); list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--secondary); transition: transform 0.3s ease; }
details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
details p { margin-top: 1.5rem; margin-bottom: 0; color: var(--text-muted); }

/* Legal Pages Styling */
.legal-page { background: var(--white); padding: 5rem; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); margin-top: -4rem; position: relative; z-index: 10; border: 1px solid #E2E8F0; }
.legal-page h2 { margin-top: 2.5rem; font-size: 1.8rem; }
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1.5rem; list-style-type: disc; color: var(--text-muted); }

/* Footer */
footer { background: #0B1120; color: #94A3B8; padding: 5rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; max-width: 1300px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 4rem; }
.footer-col h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 2rem; font-size: 0.95rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); color: var(--white); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 -10px 30px rgba(0,0,0,0.2); z-index: 9999; transform: translateY(100%); transition: transform 0.5s ease; border-top: 4px solid var(--accent); }
.cookie-banner.show { transform: translateY(0); }
.cookie-text { max-width: 800px; font-size: 0.95rem; margin-bottom: 0; }
.cookie-btns { display: flex; gap: 1rem; }

/* Mobile Adaptability */
@media (max-width: 992px) {
    .lead-wrapper { flex-direction: column; }
    .features-container, .features-container:nth-child(even) { flex-direction: column; gap: 3rem; }
    .feature-shape { display: none; }
}
@media (max-width: 768px) {
    header { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero { padding: 6rem 5% 5rem; text-align: center; }
    .cookie-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .legal-page { padding: 2rem; }
    .lead-info, .lead-form-box { padding: 2rem; }
}
