/*
Theme Name: NeuroOps.ai
Theme URI: https://neuroopsai.online/
Author: NeuroOps.ai
Author URI: https://neuroopsai.online/
Description: Tema futurista e profissional para consultoria de IA e automação. Design moderno com efeitos visuais avançados, animações suaves e layout responsivo.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neuroops
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready, custom-logo, custom-background
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary: #00F0FF;
    --primary-dark: #00B4C4;
    --secondary: #7B61FF;
    --accent: #FF3D71;
    --success: #00E096;
    --warning: #FFAA00;
    --dark: #0A0E17;
    --dark-medium: #111827;
    --dark-light: #1F2937;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --white: #F9FAFB;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--warning) 100%);
    --glow-primary: 0 0 60px rgba(0, 240, 255, 0.3);
    --glow-secondary: 0 0 60px rgba(123, 97, 255, 0.3);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* ==========================================================================
   Custom Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* ==========================================================================
   Background Effects
   ========================================================================== */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 240, 255, 0.15);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(123, 97, 255, 0.12);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 61, 113, 0.08);
    top: 50%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    padding: 0.75rem 4rem;
    background: rgba(10, 14, 23, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo-text span {
    font-weight: 300;
    opacity: 0.7;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary);
}

.main-navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--gradient-primary);
    border: none;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-left: 2rem;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--dark);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

.hero h1 .accent-text {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-metrics {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.metric {
    position: relative;
}

.metric-value {
    font-family: 'Space Mono', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.35rem;
    letter-spacing: 0.03em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
}

/* ==========================================================================
   Hero Visual / Neural Network
   ========================================================================== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.neural-network {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
    position: relative;
}

.neural-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.4); }
    50% { box-shadow: 0 0 80px rgba(0, 240, 255, 0.6), 0 0 120px rgba(123, 97, 255, 0.3); }
}

.neural-center svg {
    width: 50px;
    height: 50px;
    fill: var(--dark);
}

.neural-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.2);
    animation: ring-rotate 30s linear infinite;
}

.neural-ring:nth-child(1) { width: 200px; height: 200px; animation-duration: 25s; }
.neural-ring:nth-child(2) { width: 280px; height: 280px; animation-duration: 35s; animation-direction: reverse; }
.neural-ring:nth-child(3) { width: 360px; height: 360px; animation-duration: 45s; }
.neural-ring:nth-child(4) { width: 440px; height: 440px; animation-duration: 55s; animation-direction: reverse; }

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

.neural-ring:nth-child(1) .neural-node:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.neural-ring:nth-child(1) .neural-node:nth-child(2) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.neural-ring:nth-child(1) .neural-node:nth-child(3) { top: 50%; left: 0; transform: translate(-50%, -50%); }
.neural-ring:nth-child(1) .neural-node:nth-child(4) { top: 50%; right: 0; transform: translate(50%, -50%); }

.neural-ring:nth-child(2) .neural-node:nth-child(1) { top: 15%; left: 15%; background: var(--secondary); box-shadow: 0 0 20px var(--secondary); }
.neural-ring:nth-child(2) .neural-node:nth-child(2) { top: 15%; right: 15%; background: var(--secondary); box-shadow: 0 0 20px var(--secondary); }
.neural-ring:nth-child(2) .neural-node:nth-child(3) { bottom: 15%; left: 15%; background: var(--secondary); box-shadow: 0 0 20px var(--secondary); }
.neural-ring:nth-child(2) .neural-node:nth-child(4) { bottom: 15%; right: 15%; background: var(--secondary); box-shadow: 0 0 20px var(--secondary); }

.neural-ring:nth-child(3) .neural-node { background: var(--accent); box-shadow: 0 0 20px var(--accent); width: 8px; height: 8px; }
.neural-ring:nth-child(3) .neural-node:nth-child(1) { top: 5%; left: 30%; }
.neural-ring:nth-child(3) .neural-node:nth-child(2) { top: 30%; right: 5%; }
.neural-ring:nth-child(3) .neural-node:nth-child(3) { bottom: 5%; right: 30%; }
.neural-ring:nth-child(3) .neural-node:nth-child(4) { bottom: 30%; left: 5%; }

/* ==========================================================================
   Trusted Section
   ========================================================================== */
.trusted {
    padding: 4rem;
    background: rgba(17, 24, 39, 0.5);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    z-index: 2;
}

.trusted-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.trusted-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(123, 97, 255, 0.1);
    border: 1px solid rgba(123, 97, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    font-weight: 300;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 8rem 4rem;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--dark);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, #5B45CC 100%);
}

.service-card:nth-child(3) .service-icon {
    background: var(--gradient-accent);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--success) 0%, #00B377 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, var(--warning) 0%, #FF7700 100%);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #FF61D2 0%, #FE9090 100%);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process {
    padding: 8rem 4rem;
    background: rgba(17, 24, 39, 0.5);
    position: relative;
    z-index: 2;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--success));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: var(--glow-primary);
}

.process-step:nth-child(2) .step-number { border-color: var(--secondary); color: var(--secondary); }
.process-step:nth-child(2):hover .step-number { background: linear-gradient(135deg, var(--secondary) 0%, #5B45CC 100%); }

.process-step:nth-child(3) .step-number { border-color: var(--accent); color: var(--accent); }
.process-step:nth-child(3):hover .step-number { background: var(--gradient-accent); }

.process-step:nth-child(4) .step-number { border-color: var(--success); color: var(--success); }
.process-step:nth-child(4):hover .step-number { background: linear-gradient(135deg, var(--success) 0%, #00B377 100%); }

.process-step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   Results Section
   ========================================================================== */
.results {
    padding: 8rem 4rem;
    position: relative;
    z-index: 2;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.2);
}

.result-value {
    font-family: 'Space Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-card:nth-child(2) .result-value {
    background: linear-gradient(135deg, var(--secondary) 0%, #5B45CC 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.result-card:nth-child(3) .result-value {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
}

.result-card:nth-child(4) .result-value {
    background: linear-gradient(135deg, var(--success) 0%, #00B377 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.result-label {
    font-size: 0.95rem;
    color: var(--gray-light);
    font-weight: 400;
}

/* ==========================================================================
   Cases Section
   ========================================================================== */
.cases {
    padding: 8rem 4rem;
    background: rgba(17, 24, 39, 0.5);
    position: relative;
    z-index: 2;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.case-card {
    padding: 2.5rem;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.case-card:nth-child(2)::before {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 100%);
}

.case-card:hover {
    transform: translateX(8px);
    border-color: rgba(0, 240, 255, 0.1);
}

.case-industry {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.case-card:nth-child(2) .case-industry {
    background: rgba(123, 97, 255, 0.1);
    color: var(--secondary);
}

.case-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-metric {
    text-align: left;
}

.case-metric-value {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.case-card:nth-child(2) .case-metric-value {
    color: var(--secondary);
}

.case-metric-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ==========================================================================
   Tech Section
   ========================================================================== */
.tech {
    padding: 6rem 4rem;
    position: relative;
    z-index: 2;
}

.tech-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.tech-tag {
    padding: 0.75rem 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 24px;
    position: relative;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 4rem;
    background: var(--dark-medium);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: var(--dark);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */
.wp-block-button__link {
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

/* WordPress Admin Bar Fix */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* WordPress Alignments */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-steps::before {
        display: none;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .site-header {
        padding: 1rem 2rem;
    }

    .main-navigation ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero, .services, .process, .results, .cases, .tech, .cta-section {
        padding: 4rem 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .neural-network {
        max-width: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid, 
    .process-steps, 
    .results-grid, 
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary, 
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-container {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .trusted-logos {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .result-value {
        font-size: 2.5rem;
    }
}
