﻿:root {
    --primary: #1A202C;     /* Slate Dark */
    --secondary: #2B6CB0;   /* Executive Blue */
    --accent: #D69E2E;      /* Gold/Bronze */
    --bg-light: #F7FAFC;
    --text-main: #2D3748;
    --text-muted: #4A5568;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', 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; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Typography */
h1 { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 4vw, 3.8rem); margin-bottom: 1.5rem; line-height: 1.1; }
h3 { font-size: 1.75rem; 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: 4px; cursor: pointer; transition: all 0.4s ease; border: none; letter-spacing: 0.5px; }
.btn-primary { background-color: var(--accent); color: var(--primary); }
.btn-primary:hover { background-color: var(--primary); color: var(--accent); box-shadow: 0 10px 25px rgba(26, 32, 44, 0.2); }

/* Header */
header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #E2E8F0; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 0.8rem; }
.logo img { width: 45px; }
nav ul { display: flex; gap: 2.5rem; }
nav a { font-weight: 500; font-size: 1.05rem; }
nav a:hover { color: var(--secondary); }

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

/* Hero */
.hero { background: var(--primary); color: var(--white); padding: 10rem 5% 8rem; text-align: left; position: relative; overflow: hidden; }
.hero h1 { color: var(--white); max-width: 900px; }
.hero p { color: #CBD5E0; max-width: 700px; font-size: 1.3rem; margin-bottom: 3rem; }
.hero::after { content: ''; position: absolute; right: -10%; top: -20%; width: 50%; height: 150%; background: var(--secondary); opacity: 0.1; transform: rotate(-15deg); pointer-events: none; }

/* Random 1: Stats/Pillars */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: -4rem; position: relative; z-index: 10; padding: 0 5%; max-width: 1300px; margin-left: auto; margin-right: auto; }
.pillar-card { background: var(--white); padding: 3rem 2rem; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-top: 4px solid var(--accent); }
.pillar-card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1.5rem; }

/* About Section */
.about { text-align: center; }
.about h2 { max-width: 800px; margin: 0 auto 2rem; }
.about p { max-width: 800px; margin: 0 auto; font-size: 1.25rem; }

/* 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: 600px; object-fit: cover; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.feature-img::before { content: ''; position: absolute; top: 20px; left: -20px; right: 20px; bottom: -20px; border: 2px solid var(--accent); z-index: -1; border-radius: 4px; }
.features-container:nth-child(even) .feature-img::before { left: 20px; right: -20px; }
.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.5rem; font-size: 1.15rem; }
.feature-text ul li i { color: var(--accent); font-size: 1.4rem; margin-top: 0.2rem; }

/* Lead Form Section */
.lead-section { background: var(--white); padding: 6rem 5%; margin: 0 auto; max-width: 1000px; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; }
.lead-header { text-align: center; margin-bottom: 4rem; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group input { width: 100%; padding: 1.2rem; border: 1px solid #CBD5E0; border-radius: 4px; font-family: var(--font-body); font-size: 1rem; outline: none; transition: border-color 0.3s ease; background: #F7FAFC; }
.form-group input:focus { border-color: var(--secondary); background: var(--white); }
.checkbox-group { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 1rem; margin-top: 1rem; }
.checkbox-group input { width: 20px; height: 20px; margin-top: 0.2rem; cursor: pointer; }
.checkbox-group label { font-size: 0.95rem; color: var(--text-muted); }
.lead-form button { grid-column: 1 / -1; margin-top: 1rem; }

#successMessage { display: none; text-align: center; padding: 3rem; background: #F0FFF4; border: 1px solid #C6F6D5; border-radius: 8px; }
#successMessage i { font-size: 4rem; color: #38A169; margin-bottom: 1.5rem; }

/* Random 2: Industries */
.industries { background: var(--primary); color: var(--white); padding: 8rem 5%; text-align: center; }
.industries h2 { color: var(--white); }
.ind-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 4rem; }
.ind-tag { background: rgba(255,255,255,0.1); padding: 1rem 2rem; border-radius: 50px; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.2); }

/* FAQ Section */
.faq-container { max-width: 900px; margin: 0 auto; }
details { background: var(--white); margin-bottom: 1.5rem; border-radius: 4px; padding: 1.5rem 2rem; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid #E2E8F0; cursor: pointer; transition: all 0.3s ease; }
details[open] { border-color: var(--secondary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
summary { font-family: var(--font-heading); font-size: 1.3rem; 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(--accent); transition: transform 0.3s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 1.5rem; margin-bottom: 0; color: var(--text-muted); font-size: 1.1rem; }

/* Legal Pages Styling */
.legal-page { background: var(--white); padding: 5rem; border-radius: 8px; box-shadow: 0 15px 40px 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: 2rem; }
.legal-page ul { margin-left: 2rem; margin-bottom: 1.5rem; list-style-type: square; color: var(--text-muted); }

/* Footer */
footer { background: #0F131A; color: #A0AEC0; 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.3rem; margin-bottom: 1.5rem; font-family: var(--font-body); }
.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 40px rgba(0,0,0,0.2); z-index: 9999; transform: translateY(100%); transition: transform 0.5s ease; border-top: 3px solid var(--accent); }
.cookie-banner.show { transform: translateY(0); }
.cookie-text { max-width: 800px; font-size: 0.95rem; margin-bottom: 0; color: #E2E8F0; }
.cookie-btns { display: flex; gap: 1rem; }

/* Mobile Adaptability */
@media (max-width: 992px) {
    .features-container, .features-container:nth-child(even) { flex-direction: column; gap: 3rem; }
    .feature-img::before { display: none; }
    .lead-form { grid-template-columns: 1fr; }
}
@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% 4rem; text-align: center; }
    .pillars { margin-top: 2rem; }
    .cookie-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .legal-page { padding: 2rem; }
}
