* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif; background: #ffffff; color: #1d1d1f; line-height: 1.6; }
/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid #e5e5e7; z-index: 1000; padding: 16px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #1d1d1f; }
.nav-logo img { width: 32px; height: 32px; border-radius: 6px; }
.nav-logo span { font-size: 20px; font-weight: 600; }
.nav-menu { display: flex; gap: 32px; list-style: none; }
.nav-menu a { text-decoration: none; color: #1d1d1f; font-weight: 500; transition: color 0.2s ease; }
.nav-menu a:hover { color: #007aff; }
.nav-buttons { display: flex; gap: 12px; }
.btn { padding: 10px 20px; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-family: inherit; }
.btn-outline { background: transparent; color: #1d1d1f; border: 1px solid #e5e5e7; }
.btn-outline:hover { background: #f5f5f7; }
.btn-primary { background: #007aff; color: #ffffff; }
.btn-primary:hover { background: #0056cc; }
.container { max-width: 1200px; margin: 0 auto; padding: 120px 20px 40px; }
.header { text-align: center; margin-bottom: 60px; }
.header h1 { font-size: 48px; font-weight: 700; margin-bottom: 16px; color: #1d1d1f; }
.header p { font-size: 20px; color: #86868b; max-width: 600px; margin: 0 auto; }
.limit-notice { background: #fff3cd; border: 1px solid #ffeaa7; border-radius: 12px; padding: 24px; margin-bottom: 40px; text-align: center; }
.limit-notice h3 { color: #856404; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.limit-notice p { color: #856404; font-size: 16px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.pricing-card { background: #ffffff; border: 2px solid #e5e5e7; border-radius: 16px; padding: 40px 32px; text-align: center; transition: all 0.3s ease; position: relative; }
.pricing-card:hover { border-color: #007aff; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 122, 255, 0.1); }
.pricing-card.featured { border-color: #007aff; background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #007aff; color: #ffffff; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pricing-card.current { border-color: #34c759; }
.pricing-card.current::before { content: 'Current Plan'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #34c759; color: #ffffff; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pricing-card.active-plan { border-color: #28a745; background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%); }
.pricing-card.active-plan .plan-name { color: #28a745; }
.plan-name { font-size: 24px; font-weight: 600; margin-bottom: 8px; color: #1d1d1f; }
.plan-description { color: #86868b; font-size: 16px; margin-bottom: 24px; }
.plan-price { font-size: 48px; font-weight: 700; color: #1d1d1f; margin-bottom: 8px; }
.plan-price .currency { font-size: 24px; vertical-align: top; }
.plan-price .period { font-size: 16px; color: #86868b; font-weight: 400; }
.plan-features { list-style: none; margin: 32px 0; }
.plan-features li { padding: 12px 0; border-bottom: 1px solid #f5f5f7; color: #1d1d1f; font-size: 16px; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: #34c759; margin-right: 12px; width: 20px; }
.plan-button { width: 100%; padding: 16px 32px; border: none; border-radius: 12px; font-size: 18px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-block; text-align: center; }
.plan-button.primary { background: #007aff; color: #ffffff; }
.plan-button.primary:hover { background: #0056cc; }
.plan-button.secondary { background: #f5f5f7; color: #1d1d1f; border: 2px solid #e5e5e7; }
.plan-button.secondary:hover { background: #e5e5e7; }
.plan-button.outline { background: transparent; color: #007aff; border: 2px solid #007aff; }
.plan-button.outline:hover { background: #007aff; color: #ffffff; }
.plan-button.disabled { background: #e5e5e7; color: #86868b; border: 2px solid #e5e5e7; cursor: not-allowed; }
.plan-button.disabled:hover { background: #e5e5e7; color: #86868b; }
.comparison-section { margin-top: 80px; }
.comparison-section h2 { text-align: center; font-size: 32px; font-weight: 600; margin-bottom: 40px; color: #1d1d1f; }
.comparison-table { width: 100%; border-collapse: collapse; background: #ffffff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.comparison-table th, .comparison-table td { padding: 20px; text-align: left; border-bottom: 1px solid #e5e5e7; }
.comparison-table th { background: #f5f5f7; font-weight: 600; color: #1d1d1f; }
.comparison-table td:first-child { font-weight: 500; color: #1d1d1f; }
.comparison-table .check { color: #34c759; font-size: 18px; }
.comparison-table .cross { color: #ff3b30; font-size: 18px; }
.faq-section { margin-top: 80px; }
.faq-section h2 { text-align: center; font-size: 32px; font-weight: 600; margin-bottom: 40px; color: #1d1d1f; }
.faq-item { background: #ffffff; border: 1px solid #e5e5e7; border-radius: 12px; margin-bottom: 16px; overflow: hidden; }
.faq-question { padding: 24px; background: #f5f5f7; font-weight: 600; color: #1d1d1f; cursor: pointer; transition: background 0.2s ease; }
.faq-question:hover { background: #e5e5e7; }
.faq-answer { padding: 24px; color: #86868b; display: none; }
.faq-answer.show { display: block; }
/* Footer */
.footer { background: #1d1d1f; color: #ffffff; padding: 60px 24px 40px; margin-top: 80px; }
.footer-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 32px; }
.footer-logo img { width: 40px; height: 40px; border-radius: 8px; }
.footer-logo span { font-size: 24px; font-weight: 600; }
.footer-description { color: #86868b; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.footer-contact { color: #86868b; margin-bottom: 32px; }
.footer-contact a { color: #007aff; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; }
.footer-links a { color: #86868b; text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid #333; padding-top: 24px; color: #86868b; font-size: 14px; }
@media (max-width: 768px) { .container { padding: 100px 16px 20px; } .header h1 { font-size: 32px; } .header p { font-size: 18px; } .pricing-grid { grid-template-columns: 1fr; gap: 24px; } .pricing-card { padding: 32px 24px; } .plan-price { font-size: 36px; } .comparison-table { font-size: 14px; } .comparison-table th, .comparison-table td { padding: 16px 12px; } .footer-links { gap: 16px; } }

