/* ATS Resume Online - Professional Design */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --bg: #f8f9fa;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --white: #fff;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--border); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 10px; z-index: 1002; }
.logo i { font-size: 28px; }
.nav-links { display: flex; list-style: none; gap: 10px; align-items: center; }
.nav-links li a { text-decoration: none; color: var(--text); padding: 10px 20px; border-radius: 8px; transition: all 0.3s; font-weight: 500; }
.nav-links li a:hover, .nav-links li a.active { background: var(--primary); color: white; }
.telegram-btn { background: var(--primary) !important; color: white !important; box-shadow: var(--shadow) !important; }
.telegram-btn:hover { background: var(--primary-dark) !important; transform: translateY(-2px); box-shadow: var(--shadow-md) !important; }

/* CSS-Only Mobile Menu Toggle */
.menu-toggle-input { display: none; }
.menu-toggle-label { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; z-index: 1002; position: relative; }
.menu-toggle-label span { display: block; width: 28px; height: 3px; background: var(--text); border-radius: 3px; transition: all 0.3s ease; }

/* Hamburger Animation */
.menu-toggle-input:checked + .menu-toggle-label span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.menu-toggle-input:checked + .menu-toggle-label span:nth-child(2) { opacity: 0; }
.menu-toggle-input:checked + .menu-toggle-label span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; font-size: 16px; }
.btn-primary { background: var(--primary); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--text); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-telegram { background: #0088cc; color: white; box-shadow: var(--shadow); }
.btn-telegram:hover { background: #006699; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; }
.btn-large { padding: 16px 40px; font-size: 18px; }

/* Hero */
.hero { padding: 80px 0; text-align: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-title { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero-subtitle { font-size: 20px; margin-bottom: 40px; opacity: 0.95; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Page Header */
.page-header { padding: 60px 0; text-align: center; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; margin-bottom: 40px; }
.page-header h1 { font-size: 42px; font-weight: 800; margin-bottom: 15px; }
.page-header p { font-size: 18px; opacity: 0.95; }

/* Sections */
.section-title { font-size: 36px; font-weight: 700; text-align: center; color: var(--text); margin-bottom: 20px; }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 18px; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Stats */
.stats-section { padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.stat-card { padding: 40px 30px; text-align: center; border-radius: 12px; background: var(--white); border: 1px solid var(--border); transition: all 0.3s; }
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.stat-icon { font-size: 48px; color: var(--primary); margin-bottom: 20px; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.stat-label { color: var(--text-light); font-size: 16px; }

/* Content Cards */
.content-section { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.content-card { padding: 30px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); transition: all 0.3s; }
.content-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.card-icon { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.content-card h3 { font-size: 24px; margin-bottom: 15px; color: var(--text); }
.content-card p { color: var(--text-light); line-height: 1.8; }

/* Warning Section */
.warning-section { padding: 60px 0; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.warning-card { max-width: 900px; margin: 0 auto; padding: 50px; border-radius: 12px; background: var(--white); border: 2px solid var(--warning); box-shadow: var(--shadow-lg); }
.warning-icon { text-align: center; font-size: 60px; color: var(--warning); margin-bottom: 20px; }
.warning-card h2 { text-align: center; font-size: 32px; color: var(--text); margin-bottom: 40px; }
.warning-content { display: flex; flex-direction: column; gap: 25px; margin-bottom: 40px; }
.warning-item { display: flex; gap: 20px; align-items: flex-start; }
.warning-item i { font-size: 24px; color: var(--error); margin-top: 5px; }
.warning-item h4 { font-size: 20px; margin-bottom: 10px; color: var(--text); }
.warning-item p { color: var(--text-light); line-height: 1.8; }
.warning-cta { text-align: center; padding: 30px; border-radius: 12px; background: var(--bg); border: 1px solid var(--border); }
.warning-cta p { font-size: 18px; margin-bottom: 20px; color: var(--text); }

/* Process */
.process-section { padding: 60px 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.process-card { text-align: center; padding: 30px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); transition: all 0.3s; }
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.process-number { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: bold; margin: 0 auto 20px; }
.process-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--text); }
.process-card p { color: var(--text-light); }

/* Pricing */
.pricing-section { padding: 60px 0; background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.pricing-card { padding: 40px 30px; border-radius: 12px; background: var(--white); border: 2px solid var(--border); position: relative; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.pricing-badge { position: absolute; top: -15px; right: 30px; background: var(--primary); color: white; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow); }
.pricing-badge.premium { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.pricing-icon { text-align: center; font-size: 50px; color: var(--primary); margin-bottom: 20px; }
.pricing-title { text-align: center; font-size: 28px; margin-bottom: 20px; color: var(--text); }
.pricing-price { text-align: center; margin-bottom: 20px; }
.currency { font-size: 24px; color: var(--text-light); }
.amount { font-size: 48px; font-weight: 800; color: var(--primary); }
.pricing-description { text-align: center; color: var(--text-light); margin-bottom: 30px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 30px; }
.pricing-features li { padding: 12px 0; color: var(--text); display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--success); font-size: 18px; }
.pricing-buttons { display: flex; flex-direction: column; gap: 15px; }

/* Benefits */
.benefits-section { padding: 60px 0; background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-card { padding: 30px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.benefit-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.benefit-icon { font-size: 48px; color: var(--primary); margin-bottom: 20px; }
.benefit-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--text); }
.benefit-card p { color: var(--text-light); line-height: 1.8; }

/* Timeline */
.service-process { padding: 60px 0; }
.process-timeline { max-width: 800px; margin: 0 auto; }
.timeline-item { display: flex; gap: 30px; margin-bottom: 40px; align-items: flex-start; }
.timeline-number { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; flex-shrink: 0; }
.timeline-content { flex: 1; padding: 20px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); }
.timeline-content h3 { font-size: 22px; margin-bottom: 10px; color: var(--text); }
.timeline-content p { color: var(--text-light); line-height: 1.8; }

/* FAQ */
.faq-section { padding: 60px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.faq-card { padding: 30px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); transition: all 0.3s; }
.faq-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.faq-card h3 { font-size: 20px; margin-bottom: 15px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.faq-card h3 i { color: var(--primary); }
.faq-card p { color: var(--text-light); line-height: 1.8; }

/* CTA */
.cta-section { padding: 60px 0; }
.cta-card { text-align: center; padding: 60px 40px; border-radius: 12px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; box-shadow: var(--shadow-xl); }
.cta-card h2 { font-size: 36px; margin-bottom: 20px; }
.cta-card p { font-size: 18px; opacity: 0.95; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Templates */
.templates-section { padding: 60px 0; }
.templates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.template-card { border-radius: 12px; background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: all 0.3s; }
.template-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.template-image-preview { height: 500px; overflow: hidden; background: var(--bg); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.resume-preview-image { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s; }
.template-card:hover .resume-preview-image { transform: scale(1.05); }
.template-info { padding: 25px; text-align: center; }
.template-info h3 { font-size: 22px; color: var(--text); margin-bottom: 10px; }
.template-info p { color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
.download-btn { width: 100%; }

/* Info Banner */
.info-banner { padding: 40px 0; }
.info-card { display: flex; align-items: center; gap: 30px; padding: 30px; border-radius: 12px; background: var(--white); border: 1px solid var(--primary); box-shadow: var(--shadow-md); }
.info-icon { font-size: 48px; color: var(--primary); }
.info-content h3 { font-size: 24px; color: var(--text); margin-bottom: 10px; }
.info-content p { color: var(--text-light); line-height: 1.8; }

/* Tips */
.tips-section { padding: 60px 0; background: var(--bg); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.tip-card { padding: 30px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.tip-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.tip-icon { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
.tip-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text); }
.tip-card p { color: var(--text-light); line-height: 1.8; }

/* Contact */
.contact-section { padding: 60px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.contact-form-container, .contact-info-container { padding: 40px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.contact-form-container h2, .contact-info-container h2 { font-size: 28px; color: var(--text); margin-bottom: 15px; }
.form-description { color: var(--text-light); margin-bottom: 30px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 25px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; color: var(--text); font-size: 14px; }
.required { color: var(--error); }
.form-input { padding: 15px 20px; border: 2px solid var(--border); border-radius: 8px; background: var(--white); color: var(--text); font-size: 15px; transition: all 0.3s; font-family: inherit; }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); }
.form-input-file { padding: 12px; border: 2px solid var(--border); border-radius: 8px; background: var(--white); color: var(--text); font-size: 14px; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-hint { color: var(--text-light); font-size: 13px; }
.form-message { padding: 15px; border-radius: 8px; margin-top: 20px; text-align: center; display: none; }
.form-message.success { background: rgba(16, 185, 129, 0.1); color: var(--success); border: 2px solid var(--success); display: block; }
.form-message.error { background: rgba(239, 68, 68, 0.1); color: var(--error); border: 2px solid var(--error); display: block; }
.form-message i { font-size: 20px; margin-right: 8px; }
.form-message a { color: var(--primary); text-decoration: underline; }

/* Contact Cards */
.contact-card { padding: 25px; border-radius: 12px; background: var(--bg); border: 1px solid var(--border); margin-bottom: 20px; text-align: center; transition: all 0.3s; }
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.contact-icon { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
.contact-card h3 { font-size: 20px; color: var(--text); margin-bottom: 10px; }
.contact-card p { color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.highlight { color: var(--primary); font-weight: 600; }
.contact-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; font-weight: 600; transition: all 0.3s; }
.contact-link:hover { transform: translateX(5px); }

/* Quick Links */
.quick-links { padding: 25px; border-radius: 12px; background: var(--bg); border: 1px solid var(--border); }
.quick-links h3 { font-size: 20px; color: var(--text); margin-bottom: 15px; }
.quick-links ul { list-style: none; }
.quick-links li { margin-bottom: 12px; }
.quick-links a { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; transition: all 0.3s; }
.quick-links a:hover { color: var(--primary); transform: translateX(5px); }
.quick-links i { color: var(--primary); }

/* Contact FAQ */
.contact-faq { padding: 60px 0; background: var(--bg); }

/* Thank You */
.thank-you-section { padding: 80px 0; min-height: 70vh; }
.thank-you-content { max-width: 900px; margin: 0 auto; text-align: center; }
.success-icon { font-size: 80px; color: var(--success); margin-bottom: 30px; animation: scaleIn 0.5s ease-out; }
@keyframes scaleIn { 0% { transform: scale(0); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
.thank-you-content h1 { font-size: 42px; color: var(--text); margin-bottom: 20px; }
.lead { font-size: 20px; color: var(--text-light); margin-bottom: 50px; }
.thank-you-card { padding: 50px 40px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-md); margin-bottom: 40px; }
.thank-you-card h2 { font-size: 28px; color: var(--text); margin-bottom: 40px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.step { padding: 20px; }
.step-number { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: bold; margin: 0 auto 20px; }
.step h3 { font-size: 20px; color: var(--text); margin-bottom: 10px; }
.step p { color: var(--text-light); line-height: 1.6; }
.telegram-card { padding: 40px; border-radius: 12px; background: linear-gradient(135deg, #0088cc 0%, #006699 100%); color: white; margin-bottom: 40px; }
.telegram-card .telegram-icon { font-size: 60px; margin-bottom: 20px; }
.telegram-card h2 { font-size: 28px; margin-bottom: 15px; }
.telegram-card p { font-size: 18px; margin-bottom: 25px; opacity: 0.95; }
.action-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: linear-gradient(135deg, var(--text) 0%, #0f172a 100%); color: white; padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section h3 { font-size: 24px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.footer-section h4 { font-size: 18px; margin-bottom: 15px; }
.footer-section p { color: rgba(255, 255, 255, 0.8); line-height: 1.8; margin-bottom: 15px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: all 0.3s; }
.footer-section ul li a:hover { color: var(--primary-light); padding-left: 5px; }
.telegram-link { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; background: #0088cc; color: white; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
.telegram-link:hover { background: #006699; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle-label { display: flex; }
    .nav-links { position: fixed; top: 70px; left: -100%; width: 80%; max-width: 300px; height: calc(100vh - 70px); background: var(--white); flex-direction: column; padding: 30px 0; box-shadow: var(--shadow-xl); transition: left 0.3s ease; align-items: stretch; gap: 0; overflow-y: auto; z-index: 1001; }
    .menu-toggle-input:checked ~ .nav-links { left: 0; }
    .nav-links li { width: 100%; }
    .nav-links li a { display: block; width: 100%; padding: 15px 30px; border-radius: 0; border-bottom: 1px solid var(--border); }
    .nav-links li a:hover, .nav-links li a.active { background: var(--primary); color: white; border-bottom-color: var(--primary-dark); }
    .telegram-btn { border-bottom: none !important; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 28px; }
    .pricing-grid, .templates-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .timeline-item { flex-direction: column; align-items: center; text-align: center; }
    .info-card { flex-direction: column; text-align: center; }
    .warning-card { padding: 30px 20px; }
    .cta-card { padding: 40px 20px; }
    .template-image-preview { height: 400px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .stats-grid, .content-grid, .benefits-grid, .tips-grid, .faq-grid { grid-template-columns: 1fr; }
    .action-buttons { flex-direction: column; }
    .action-buttons .btn { width: 100%; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Animation */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease-out; }
