/* 
 * Enterprise Resolution Center 9.5/10 
 * Ultra-Polished SaaS Inspired
 */

:root {
    --bg-color: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: rgba(15, 23, 42, 0.08);
    --accent: #3b82f6;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Next-level Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.08);
    
    /* Gradients */
    --gradient-text: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(24px);
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.04) 0px, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.04) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--text-primary); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    border-radius: 16px;
}

/* JS Scroll Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.button-primary {
    background-color: var(--text-primary);
    color: #ffffff;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
}
.button-primary:hover {
    background-color: #1e293b;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px);
    color: #fff;
}
.button-primary svg { transition: transform 0.3s ease; }
.button-primary:hover svg { transform: translateX(4px); }

/* Header */
.site-header {
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.site-branding { display: flex; align-items: center; }
.text-logo { 
    display: flex; align-items: center; gap: 12px;
    font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); 
}
.text-logo svg { width: 24px; height: 24px; color: var(--accent); }
.main-navigation { display: flex; align-items: center; gap: 32px; }
.main-navigation a { font-size: 14px; font-weight: 600; color: var(--text-secondary); transition: var(--transition); }
.main-navigation a:not(.header-cta-btn):hover { color: var(--text-primary); }

.header-cta-btn {
    padding: 10px 24px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-primary) !important;
    font-weight: 600;
    transition: var(--transition);
}
.header-cta-btn:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.hero-kicker .divider { margin: 0 12px; opacity: 0.4; }

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-tags {
    display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.hero-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-mono);
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 540px;
}

/* Dynamic Hero Composition (Right Side) */
.hero-composition {
    position: relative;
    width: 100%;
    height: 480px;
}
.comp-center-shield {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    background: #ffffff;
    border-radius: 32px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 24px 64px rgba(59, 130, 246, 0.15);
    z-index: 10;
    color: var(--accent);
    transition: var(--transition);
}
.comp-center-shield:hover {
    transform: translate(-50%, -52%) scale(1.05);
    box-shadow: 0 32px 80px rgba(59, 130, 246, 0.25);
}
.comp-center-shield svg { width: 56px; height: 56px; }
.pulse-ring {
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    border-radius: 40px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    animation: compPulse 3s infinite;
}
@keyframes compPulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.comp-node {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-md);
    font-size: 14px; font-weight: 600;
    z-index: 5;
    animation: floatFloat 6s ease-in-out infinite;
    transition: var(--transition);
    cursor: default;
}
.comp-node:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-lg);
}

.node-status { width: 8px; height: 8px; border-radius: 50%; }
.node-status.green { background: #10b981; box-shadow: 0 0 12px #10b981; }
.node-status.blue { background: #3b82f6; box-shadow: 0 0 12px #3b82f6; }
.node-status.purple { background: #8b5cf6; box-shadow: 0 0 12px #8b5cf6; }

.node-1 { top: 15%; left: 10%; animation-delay: 0s; }
.node-2 { top: 25%; right: 5%; animation-delay: 1.5s; }
.node-3 { bottom: 15%; left: 25%; animation-delay: 3s; }

/* Floating animation for nodes */
@keyframes floatFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.comp-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.line-path {
    stroke: rgba(59, 130, 246, 0.2);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8 8;
    animation: march 20s linear infinite;
}
@keyframes march { to { stroke-dashoffset: -100; } }

/* Statistics Bar */
.stats-bar-section { margin-bottom: 60px; }
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 64px;
}
.stat-item { display: flex; flex-direction: column; align-items: center; transition: var(--transition); }
.stat-item:hover { transform: translateY(-4px); }
.stat-val { font-size: 32px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.03em; }
.stat-lbl { font-size: 13px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 64px; height: 1px; background: var(--border-color); }

/* Official Communications Trust Block */
.trust-statement { margin-bottom: 80px; }
.trust-statement-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    background: #ffffff;
    border-left: 6px solid var(--accent);
}
.trust-icon { width: 56px; height: 56px; color: var(--accent); flex-shrink: 0; }
.trust-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.trust-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.trust-text strong { color: var(--text-primary); }

/* Report Categories */
.report-categories { margin-bottom: 120px; }
.categories-inner { padding: 48px; }
.categories-inner h3 { font-size: 24px; font-weight: 800; margin-bottom: 32px; text-align: center; }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-item {
    display: flex; align-items: center; gap: 16px;
    font-size: 16px; font-weight: 600; color: var(--text-primary);
    background: #ffffff; padding: 16px 24px; border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: var(--transition);
}
.cat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-md);
}
.cat-item svg { width: 24px; height: 24px; flex-shrink: 0; }

/* Services Cards */
.services-cards { padding-bottom: 120px; }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.section-header p { font-size: 18px; color: var(--text-secondary); margin-top: 16px; max-width: 600px; margin-inline: auto; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(15, 23, 42, 0.15); }

.card-icon {
    width: 56px; height: 56px;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; color: var(--text-primary);
}
.card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 32px; }

.card-action {
    display: flex; align-items: center; font-size: 15px; font-weight: 600; color: var(--text-primary);
    padding-top: 24px; border-top: 1px solid var(--border-color); transition: var(--transition);
}
.card-action svg { width: 16px; height: 16px; margin-left: 8px; transition: var(--transition); }
.card:hover .card-action svg { transform: translateX(4px); }

/* Process Timeline */
.process-timeline-section { padding: 120px 0; background: #ffffff; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; padding: 40px 0; }
.timeline-step { display: flex; gap: 40px; margin-bottom: 64px; position: relative; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-number {
    width: 80px; height: 80px; flex-shrink: 0;
    background: #ffffff; border: 2px solid var(--border-color); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800; font-family: var(--font-mono); color: var(--text-primary);
    box-shadow: 0 0 0 8px #ffffff; z-index: 2; transition: var(--transition);
}
.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -64px;
    width: 2px;
    background: var(--border-color);
    z-index: 1;
}
.timeline-step:hover .timeline-number { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1); }
.timeline-content { padding: 32px; flex-grow: 1; border-radius: 16px; background: var(--bg-color); border: 1px solid var(--border-color); transition: var(--transition); }
.timeline-step:hover .timeline-content { border-color: rgba(15, 23, 42, 0.15); box-shadow: var(--shadow-md); background: #ffffff; }
.timeline-content h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.timeline-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

/* Submission Guidelines */
.submission-guidelines-section { padding: 100px 0; background: var(--bg-color); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.guidelines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.guideline-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}
.guideline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.2);
}
.guideline-card h4 { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; border-bottom: 2px solid rgba(59, 130, 246, 0.1); padding-bottom: 12px; }
.guideline-card ul { list-style: none; padding: 0; margin: 0; }
.guideline-card li { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; position: relative; padding-left: 20px; }
.guideline-card li:last-child { margin-bottom: 0; }
.guideline-card li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 10px;
}



/* FAQ Accordion */
.faq-accordion-section { padding: 120px 0; }
.accordion-container { max-width: 800px; margin: 0 auto; padding: 40px; background: #ffffff; }
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; background: none; border: none; text-align: left;
    font-size: 18px; font-weight: 700; color: var(--text-primary); cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition);
}
.accordion-header:hover { color: var(--accent); }
.accordion-icon { font-size: 24px; font-weight: 400; color: var(--text-secondary); transition: transform 0.3s ease; }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-body p { padding-bottom: 24px; font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

/* Contact Forms */
.home-contact-form { padding: 120px 0; }
.contact-split-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }
.contact-form-wrapper { padding: 48px; background: #ffffff; border-radius: 16px; }
.contact-form-wrapper h3 { font-size: 24px; font-weight: 800; margin-bottom: 32px; }
.contact-direct-side h2 {
    margin-bottom: 32px;
}

.direct-contacts { padding: 40px; background: #ffffff; margin-bottom: 32px; border-radius: 16px; transition: var(--transition); }
.direct-contacts:hover { box-shadow: var(--shadow-md); border-color: rgba(15, 23, 42, 0.15); }
.direct-contacts h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.direct-contacts p { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; }
.contact-method { margin-bottom: 24px; }
.contact-method:last-child { margin-bottom: 0; }
.method-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-method a { font-size: 18px; font-weight: 600; color: var(--accent); transition: var(--transition); }
.contact-method a:hover { color: #1e40af; text-decoration: underline; }
.contact-method strong { font-size: 18px; font-weight: 600; color: var(--text-primary); }

.trust-badge { display: flex; align-items: center; gap: 16px; padding: 24px; background: rgba(16, 185, 129, 0.1); border-radius: 12px; color: #059669; }
.trust-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.trust-badge span { font-size: 14px; font-weight: 600; }

/* Form fields (Fluent Form specific usually) */
.ff-el-group { margin-bottom: 24px; }
.ff-el-input--label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--text-primary); }
.ff-el-form-control {
    width: 100%; background: var(--bg-color); border: 1px solid var(--border-color); color: var(--text-primary);
    padding: 14px 16px; border-radius: 8px; font-size: 16px; transition: var(--transition);
    font-family: var(--font-sans);
}
.ff-el-form-control:focus { outline: none; border-color: var(--accent); background: #ffffff; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); }
.ff-btn-submit {
    width: 100%; background: var(--text-primary); color: #ffffff;
    font-weight: 600; padding: 16px; border: none; border-radius: 8px;
    cursor: pointer; transition: var(--transition); font-size: 16px; margin-top: 8px;
}
.ff-btn-submit:hover { background: var(--accent); transform: translateY(-2px); }

/* Footer styling addition */
.footer-contact-info { margin-top: 16px; font-size: 15px; color: var(--text-secondary); }
.footer-contact-info a { color: var(--accent); font-weight: 600; }
.footer-contact-info a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: #ffffff;
}
.footer-inner-2col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}
.footer-branding .footer-title { font-size: 20px; font-weight: 800; margin-bottom: 16px; color: var(--text-primary); }
.footer-branding .footer-desc { font-size: 15px; color: var(--text-secondary); max-width: 480px; line-height: 1.6; }

.footer-navigation h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-navigation ul { list-style: none; padding: 0; margin: 0; }
.footer-navigation li { margin-bottom: 12px; }
.footer-navigation a { font-size: 15px; color: var(--text-secondary); transition: var(--transition); }
.footer-navigation a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 32px; font-size: 14px; color: var(--text-secondary); text-align: center; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 64px; text-align: center; }
    .hero-tags, .hero-kicker, .hero-actions { justify-content: center; }
    .hero-subtitle { margin-inline: auto; }
    .stats-bar { padding: 32px; flex-wrap: wrap; gap: 32px; justify-content: center; }
    .stat-divider { display: none; }
    .trust-statement-inner { flex-direction: column; text-align: center; }
    .cat-grid, .cards-grid, .guidelines-grid { grid-template-columns: 1fr; }
    .timeline-line { left: 32px; }
    .timeline-number { width: 64px; height: 64px; font-size: 20px; }
    .contact-split-container { grid-template-columns: 1fr; gap: 64px; }
    .footer-inner-2col { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-navigation a:hover { padding-left: 0; }
}
@media (max-width: 768px) {
    .main-navigation { display: none; }
    .hero-title { font-size: 40px; }
    .hero-composition { display: none; } /* Hide complex graphic on small mobile */
}
.form-response {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}
