:root {
    --bg-dark: #0a0e14;
    --bg-light: #f8fafc;
    --text-dark: #e2e8f0;
    --text-light: #1e293b;
    --accent: #3b82f6;
    /* Electric Blue */
    --accent-glow: rgba(59, 130, 246, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-light);
    color: var(--text-light);
    transition: background-color var(--transition), color var(--transition);
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

body:not(.dark-mode) .glass {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: background var(--transition);
}

.main-header.scrolled {
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-inc {
    color: var(--accent);
}

.logo-boost {
    color: inherit;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 var(--accent-glow);
    transition: transform var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: white;
    margin-right: 1rem;
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    color: inherit;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title span {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.hero-body {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Gap Infographic */
.gap-visual-container {
    margin-bottom: 4rem;
}

.gap-infographic {
    max-width: 700px;
    margin: 0 auto;
}

.infographic-stat {
    margin-bottom: 2rem;
}

.stat-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
}

.stat-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 6px;
    transition: width 1.5s ease-out;
}

.stat-bar.highlight .stat-fill {
    background: linear-gradient(to right, var(--accent), #00f2fe);
    box-shadow: 0 0 15px var(--accent-glow);
}

.stat-value {
    font-weight: 800;
    color: var(--accent);
}

.infographic-note {
    font-size: 0.9rem;
    opacity: 0.6;
    text-align: center;
}

/* Core Pillars */
.core-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-card {
    text-align: center;
}

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

/* Social Proof */
.social-proof {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    opacity: 0.4;
    filter: grayscale(1);
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Services */
.service-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Case Studies */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-tile {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    border: none;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
}

.case-tile:hover {
    transform: scale(1.02);
}

.case-tile h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.case-result {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.diff-item {
    margin-bottom: 2.5rem;
}

.diff-item h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Optimized ROI Widget */
.roi-section {
    padding: 6rem 0;
}

.roi-widget {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.roi-header {
    margin-bottom: 2.5rem;
}

.roi-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.roi-header p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.roi-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.roi-form label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.roi-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    width: 200px;
    text-align: center;
    outline: none;
    transition: all var(--transition);
}

.roi-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.roi-results {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.roi-stat {
    flex: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform var(--transition);
}

.roi-stat:hover {
    transform: translateY(-5px);
}

.roi-stat.highlight {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--accent);
}

.roi-stat .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.roi-stat .value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Data Flow Animation Container */
.data-flow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

@keyframes dataFlow {
    0% {
        transform: translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(100vh) rotate(45deg);
        opacity: 0;
    }
}

.flow-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    animation: dataFlow 5s linear infinite;
}

/* Contact Page Styles */
.contact-section {
    padding: 10rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: inherit;
    font-family: inherit;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), border-color var(--transition);
}

.social-card:hover {
    transform: translateX(10px);
    border-color: var(--accent);
}

.social-icon {
    font-size: 2rem;
}

.social-card h4 {
    margin-bottom: 0.25rem;
    color: var(--accent);
}

.contact-details {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-details p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Refinement */
.main-footer {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.03));
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}

.footer-info .logo {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-address {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-tagline {
    opacity: 0.7;
    font-size: 1rem;
    max-width: 300px;
}

.footer-links h4,
.footer-newsletter h4 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 1.05rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 12px;
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}