:root {
    --bg-color: #050a15;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-color: #f1f5f9;
    --muted-text: #94a3b8;
    --primary-color: #3b82f6; 
    --secondary-color: #06b6d4;
    --accent-color: #6366f1;
    --glass-border: rgba(255, 255, 255, 0.08);
    --nav-height: 80px;
    --section-padding: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
    color: white;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
    font-weight: 800;
}

.animated-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 6s linear infinite;
}

@keyframes gradientText {
    to { background-position: 200% center; }
}

/* Background Blobs */
.blob {
    position: absolute;
    filter: blur(120px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.4;
}

.blob-1 { top: -100px; left: -100px; width: 600px; height: 600px; background: var(--primary-color); }
.blob-2 { bottom: 10%; right: -100px; width: 500px; height: 500px; background: var(--accent-color); }
.blob-3 { top: 40%; left: 30%; width: 400px; height: 400px; background: var(--secondary-color); opacity: 0.2; }

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Header & Nav */
header {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 10, 21, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
}

.brand-divider {
    height: 24px;
    width: 1px;
    background: var(--glass-border);
}

.sub-brand {
    font-size: 0.85rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white !important;
}

.nav-cta:hover {
    background: var(--accent-color);
}

/* Hero Section */
.hero-business {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-top: var(--nav-height);
}

.badge-certified {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    border-color: var(--glass-border);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.8rem;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--muted-text);
}

/* Services */
.services-modern {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.05), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    padding: 3rem 2rem;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-item h3 {
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* About Section */
.about-corporate {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-content p { color: var(--muted-text); margin-bottom: 2rem; }

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.check-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: 800;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-card {
    padding: 2.5rem;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--muted-text);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Transparency Section - CRITICAL */
.transparency-section {
    padding: var(--section-padding) 0;
}

.compliance-box {
    padding: 4rem;
    border: 1px solid var(--primary-color);
    background: rgba(59, 130, 246, 0.02);
}

.compliance-badge {
    display: inline-block;
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 4px 12px;
    font-size: 0.7rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.compliance-header h2 { font-size: 2.2rem; margin-bottom: 2rem; }

.compliance-body > p {
    color: var(--muted-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.official-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px dashed var(--glass-border);
    margin-bottom: 3rem;
    text-align: center;
}

.official-disclaimer .label {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
    display: block;
}

.disclaimer-text-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.entity-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item strong { color: var(--primary-color); font-size: 0.9rem; }
.detail-item span { color: var(--text-color); font-size: 1.1rem; }

.compliance-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Apps Section */
.apps { padding: var(--section-padding) 0; }
.app-card { padding: 3rem 2rem; text-align: center; }
.app-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 800; color: white;
}

/* Contact Section */
.contact-business { padding: var(--section-padding) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.contact-methods { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.method { display: flex; gap: 1.5rem; align-items: flex-start; }
.method .icon { font-size: 1.5rem; background: var(--card-bg); padding: 12px; border-radius: 12px; }

.contact-form-container { padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-family: inherit;
}

.w-full { width: 100%; }

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.4);
    padding-top: 5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    padding-bottom: 4rem;
}

.footer-brand-info p {
    color: var(--muted-text);
    margin-top: 1.2rem;
    max-width: 350px;
}

.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.link-col h4 { margin-bottom: 1.5rem; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }
.link-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.link-col a { color: var(--muted-text); text-decoration: none; font-size: 0.9rem; }
.link-col a:hover { color: var(--primary-color); }

.footer-legal {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    color: var(--muted-text);
}

.flex-legal { display: flex; justify-content: space-between; align-items: center; }

/* Legal / Policy Page Styles */
.legal-main {
    padding: 150px 0 100px;
}

.legal-card {
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--muted-text);
    margin-bottom: 4rem;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.policy-section p {
    color: var(--muted-text);
    font-size: 1.05rem;
}

.legal-contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid var(--glass-border);
}

.legal-contact-box p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-business, .about-grid, .contact-grid, .footer-content-modern { grid-template-columns: 1fr; }
    .hero-business { text-align: center; padding-top: 150px; }
    .hero-actions { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .check-list { grid-template-columns: 1fr; }
    .flex-legal { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 768px) {
    .nav-container nav { display: none; }
    .hero-text h1 { font-size: 2.5rem; }
    .official-disclaimer .disclaimer-text-main { font-size: 1.5rem; }
    .entity-details { grid-template-columns: 1fr; }
    .compliance-box { padding: 2rem; }
}
