:root {
    --primary-blue: #0a2463;
    --secondary-blue: #1e3a8a;
    --accent-yellow: #fbbf24;
    --light-blue: #3b82f6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.accent-text {
    color: var(--accent-yellow);
    font-weight: bold;
}

.btn-primary-custom {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary-custom:hover {
    background: #f59e0b;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
}

.features-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-left: 4px solid var(--accent-yellow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.pricing-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.price-period {
    font-size: 1.2rem;
    color: #6b7280;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--accent-yellow);
    margin-right: 10px;
}

.cta-section {
    background: var(--accent-yellow);
    padding: 60px 0;
}

.cta-section h2 {
    color: var(--primary-blue);
}

.btn-secondary-custom {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 50px;
}

.highlight-box {
    background: #fef3c7;
    border-left: 4px solid var(--accent-yellow);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.workflow-steps {
    margin: 30px 0;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.workflow-step:hover {
    background: #fef3c7;
    transform: translateX(5px);
}

.workflow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
}

.workflow-content h5 {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 8px;
}

.workflow-content p {
    color: #4b5563;
    margin: 0;
}

.footer {
    background: var(--primary-blue);
    color: white;
    padding: 30px 0;
    text-align: center;
}