/* Custom Styles */

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Value Proposition Cards */
.value-prop-card {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-prop-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

/* Methodology Steps */
.methodology-step {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.methodology-step:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    transform: translateX(10px);
}

/* Analysis Cards */
.analysis-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    height: 100%;
}

.analysis-item {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.analysis-item:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateX(5px);
}

/* Opportunity Cards */
.opportunity-card {
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Plan Cards */
.plan-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
}

.plan-card.featured {
    border: 2px solid rgba(251, 191, 36, 0.5);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(251, 191, 36, 0.3);
}

.plan-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features {
    padding: 2rem;
    flex-grow: 1;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    margin: 0 2rem 2rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.plan-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: #93c5fd;
}

/* Input Fields */
.input-field {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.input-field::placeholder {
    color: rgba(156, 163, 175, 0.6);
}

select.input-field {
    cursor: pointer;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #10b981, #3b82f6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3b82f6, #a855f7);
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.bg-gradient-animate {
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

/* Button Glow Effect */
button:hover,
a.group:hover {
    filter: brightness(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .methodology-step:hover {
        transform: translateY(-5px);
    }
}

/* Print Styles */
@media print {
    .plan-card {
        break-inside: avoid;
    }
}

/* High Contrast Focus States for Accessibility */
.input-field:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 3px solid #10b981;
    outline-offset: 2px;
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-top-color: #10b981;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Service Pages Styles */
.service-preview-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    display: block;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Stat Highlights */
.stat-highlight {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-highlight:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

/* Problem Cards */
.problem-card {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateX(10px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

.analysis-dimension {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.5rem;
}

.benefit-box {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    background: rgba(30, 41, 59, 0.8);
}

/* Case Study Cards */
.case-study-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.case-study-card.featured {
    border: 2px solid rgba(251, 191, 36, 0.5);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.case-problem {
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid rgba(239, 68, 68, 0.5);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.case-solution {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid rgba(16, 185, 129, 0.5);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.case-results {
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-metric {
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Combination Cards */
.combination-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.combination-card.featured {
    border: 2px solid rgba(59, 130, 246, 0.5);
}

.combination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.combo-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Combo Cards (for services page) */
.combo-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.combo-card.featured {
    border: 2px solid rgba(251, 191, 36, 0.5);
}

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
}

.combo-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.combo-services {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.combo-service {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    font-weight: 500;
}

.combo-benefits {
    padding: 0 2rem 2rem 2rem;
    flex-grow: 1;
}

.combo-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    margin: 0 2rem 2rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.combo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
