/* ============================================
   SSL Certificate Manager - Homepage Styles
   https://ssl.a1-soft.com
   ============================================ */

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #f8fafc; color: #334155; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Navbar --- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 700; color: #1e293b; text-decoration: none; }
.logo i { color: #3b82f6; font-size: 28px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #64748b; text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.3s; }
.nav-links a:hover { color: #3b82f6; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; text-align: center; cursor: pointer; transition: all 0.3s; border: none; font-size: 15px; }
.btn-primary { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); color: white; box-shadow: 0 4px 14px rgba(59,130,246,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.4); }
.btn-outline { background: white; color: #3b82f6; border: 2px solid #3b82f6; }
.btn-outline:hover { background: #3b82f6; color: white; }
.btn-light { background: white; color: #475569; border: 1px solid #e2e8f0; }
.btn-light:hover { background: #f8fafc; border-color: #cbd5e1; }
.btn-white { background: white; color: #3b82f6; padding: 16px 35px; font-size: 16px; font-weight: 600; border-radius: 10px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* --- Hero --- */
.hero { padding: 140px 0 80px; background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%); text-align: center; }
.hero-badge { display: inline-block; background: #eff6ff; color: #3b82f6; padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 25px; border: 1px solid #bfdbfe; }
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; color: #1e293b; }
.hero h1 span { background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 18px; color: #64748b; max-width: 600px; margin: 0 auto 35px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 50px; }
.hero-stats { display: flex; justify-content: center; gap: 60px; margin-top: 50px; padding-top: 40px; border-top: 1px solid #e2e8f0; }
.stat-item { text-align: center; }
.stat-value { font-size: 32px; font-weight: 800; color: #1e293b; }
.stat-label { color: #64748b; font-size: 14px; }

/* --- Sections --- */
.section { padding: 80px 0; }
.section.white { background: #fff; }
.section.gray { background: #f8fafc; }
.section-title { text-align: center; font-size: 36px; font-weight: 700; margin-bottom: 12px; color: #1e293b; }
.section-subtitle { text-align: center; color: #64748b; font-size: 18px; margin-bottom: 50px; }

/* --- Grids --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Cards --- */
.card { background: white; border-radius: 16px; padding: 35px; border: 1px solid #e2e8f0; transition: all 0.3s; text-align: center; }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.card-icon { width: 65px; height: 65px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; }
.card-icon.blue { background: #eff6ff; color: #3b82f6; }
.card-icon.green { background: #f0fdf4; color: #22c55e; }
.card-icon.purple { background: #faf5ff; color: #a855f7; }
.card-icon.orange { background: #fff7ed; color: #f97316; }
.card-icon.cyan { background: #ecfeff; color: #06b6d4; }
.card-icon.pink { background: #fdf2f8; color: #ec4899; }
.card h3 { font-size: 20px; margin-bottom: 12px; color: #1e293b; }
.card p { color: #64748b; font-size: 15px; }

/* --- Step Cards --- */
.step-card { background: white; border-radius: 16px; padding: 35px; border: 1px solid #e2e8f0; text-align: center; }
.step-number { width: 45px; height: 45px; background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; margin: 0 auto 20px; }
.step-card h3 { font-size: 20px; margin-bottom: 12px; color: #1e293b; }
.step-card p { color: #64748b; font-size: 15px; }

/* --- Pricing --- */
.pricing-card { background: white; border-radius: 16px; padding: 32px 24px; border: 1px solid #e2e8f0; position: relative; transition: all 0.3s; }
.pricing-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.pricing-card.featured { border: 2px solid #3b82f6; transform: scale(1.05); box-shadow: 0 20px 40px rgba(59,130,246,0.15); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); color: white; padding: 5px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pricing-card h3 { font-size: 18px; margin-bottom: 8px; text-align: center; color: #475569; }
.pricing-price { text-align: center; margin-bottom: 8px; }
.pricing-price .amount { font-size: 40px; font-weight: 800; color: #1e293b; }
.pricing-price .period { color: #64748b; font-size: 14px; }
.pricing-billed { text-align: center; color: #94a3b8; font-size: 13px; margin-bottom: 5px; }
.pricing-save { text-align: center; color: #22c55e; font-size: 13px; font-weight: 600; margin-bottom: 20px; height: 18px; }
.pricing-features { list-style: none; margin-bottom: 25px; }
.pricing-features li { padding: 8px 0; color: #64748b; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: #22c55e; font-size: 12px; }
.pricing-card .btn { width: 100%; }

/* --- Download Box --- */
.download-box { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); border-radius: 20px; padding: 50px 60px; display: flex; justify-content: space-between; align-items: center; color: white; }
.download-info h3 { font-size: 28px; margin-bottom: 15px; }
.download-info p { opacity: 0.9; font-size: 15px; margin-bottom: 6px; }
.download-info p i { margin-right: 8px; width: 20px; }

/* --- Footer --- */
.footer { background: #1e293b; padding: 60px 0 30px; color: #94a3b8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: white; margin-bottom: 15px; }
.footer-brand .logo i { color: #60a5fa; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-links h4 { font-size: 15px; margin-bottom: 20px; color: white; font-weight: 600; }
.footer-links a { display: block; color: #94a3b8; text-decoration: none; padding: 6px 0; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #60a5fa; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 25px; text-align: center; font-size: 14px; }
.footer-bottom a { color: #60a5fa; text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 1200px) {
    #pricing .container > div { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    #pricing .container > div { grid-template-columns: repeat(2, 1fr) !important; }
    .pricing-card.featured { transform: none; }
    .hero h1 { font-size: 38px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    #pricing .container > div { grid-template-columns: 1fr !important; }
    .hero h1 { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 25px; }
    .download-box { flex-direction: column; text-align: center; gap: 30px; padding: 40px 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
