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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    padding: 20px;
    color: #111827;
}

.pdf-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.pdf-page {
    width: 210mm;
    min-height: 297mm;
    background: white;
    margin: 0 auto 20px;
    padding: 20mm;
    box-sizing: border-box;
    page-break-after: always;
    position: relative;
}

.pdf-page:last-child {
    page-break-after: auto;
}

@media print {
    body {
        background: white;
        padding: 0;
        margin: 0;
    }
    
    .pdf-container {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-width: none;
    }
    
    .pdf-page {
        box-shadow: none;
        margin: 0;
        page-break-after: always;
    }
}

.pdf-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #f5a623;
    padding-bottom: 20px;
    background: radial-gradient(circle at top left, #fff6dd, #ffffff 100%);
    border-radius: 12px 12px 0 0;
    padding: 30px;
}

.pdf-header h1 {
    color: #111827;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pdf-header .subtitle {
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: 600;
}

.pdf-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.section {
    margin-bottom: 30px;
    page-break-inside: avoid;
}

.section-title {
    color: #f5a623;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 5px solid #f5a623;
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.1) 0%, transparent 100%);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.value-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px 0;
}

.value-card-centered {
    width: 100%;
    margin: 0;
    background: linear-gradient(145deg, #fffbf0, #ffffff);
    border-left: 5px solid #f5a623;
    border-right: 5px solid #f5a623;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.1);
    padding: 35px;
    text-align: center;
}

.value-card-centered h3 {
    justify-content: center;
    font-size: 1.4rem;
    color: #f5a623;
    margin-bottom: 20px;
}

.value-card-centered ul {
    text-align: left;
    display: inline-block;
}

.value-card {
    background: linear-gradient(145deg, #f9fafb, #ffffff);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f5a623;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-card h3::before {
    content: '▸';
    color: #f5a623;
    font-size: 1.5rem;
    font-weight: bold;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card li {
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card li:last-child {
    border-bottom: none;
}

.value-card li:hover {
    background: rgba(245, 166, 35, 0.05);
    padding-left: 10px;
}

.timeline {
    margin: 20px 0;
}

.timeline-item {
    padding: 20px;
    background: linear-gradient(145deg, #f9fafb, #ffffff);
    margin-bottom: 15px;
    border-radius: 12px;
    border-left: 4px solid #f5a623;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
}

.timeline-content {
    color: #6b7280;
    font-size: 0.9rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(245, 166, 35, 0.05);
}

.table th {
    background: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.table .highlight {
    background: linear-gradient(135deg, #f5a623, #e67e00);
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.table .highlight td {
    padding: 18px 15px;
    border-bottom: none;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tech-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
}

.tech-tag:hover {
    background: #f5a623;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.tech-tag.primary {
    background: linear-gradient(135deg, #f5a623, #e67e00);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.tech-tag.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.pricing-box {
    background: linear-gradient(135deg, #f5a623, #e67e00);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.pricing-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.pricing-stat {
    text-align: center;
}

.pricing-stat .number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.pricing-stat .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-section {
    background: linear-gradient(135deg, #fffbf0, #ffffff);
    padding: 35px;
    text-align: center;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid #f5a623;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.1);
}

.cta-section h2 {
    color: #111827;
    margin-bottom: 15px;
}

.contact-info {
    background: linear-gradient(145deg, #f9fafb, #ffffff);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.contact-info strong {
    color: #111827;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
}

.loading {
    text-align: center;
    padding: 20px;
    display: none;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f5a623;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.button-container {
    text-align: center;
    margin: 20px 0;
        }

.btn {
    background: linear-gradient(135deg, #f5a623, #e67e00);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.4);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pdf-container {
        padding: 15px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .pdf-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .tech-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
