Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --secondary: #1e40af;
+ --text: #1f2937;
+ --background: #ffffff;
+ --accent: #3b82f6;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .btn {
+ padding: 0.5rem 1rem;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: transform 0.2s;
+ }
+
+ .btn:hover {
+ transform: translateY(-2px);
+ }
+
+ .login {
+ background: transparent;
+ color: var(--primary);
+ border: 2px solid var(--primary);
+ }
+
+ .join {
+ background: var(--primary);
+ color: white;
+ }
+
+ #hero {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 6rem 1rem;
+ background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-stats {
+ display: grid;
+ grid-template-columns: repeat(4, 1fr);
+ gap: 2rem;
+ margin-top: 4rem;
+ }
+
+ .stat {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ }
+
+ .stat:hover {
+ transform: translateY(-10px);
+ }
+
+ .counter {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ section {
+ padding: 5rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .steps {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .step {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 1rem;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ .step-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .pricing-cards {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ position: relative;
+ transition: transform 0.3s;
+ }
+
+ .card:hover {
+ transform: translateY(-10px);
+ }
+
+ .popular {
+ border: 2px solid var(--primary);
+ }
+
+ .popular-badge {
+ position: absolute;
+ top: -1rem;
+ right: 1rem;
+ background: var(--primary);
+ color: white;
+ padding: 0.5rem 1rem;
+ border-radius: 2rem;
+ font-size: 0.875rem;
+ }
+
+ .price {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ margin: 1rem 0;
+ }
+
+ .price span {
+ font-size: 1rem;
+ color: var(--text);
+ }
+
+ .choose-plan {
+ width: 100%;
+ padding: 1rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: background 0.3s;
+ }
+
+ .choose-plan:hover {
+ background: var(--secondary);
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 1px solid #e5e7eb;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ textarea {
+ height: 150px;
+ }
+
+ footer {
+ background: #f8fafc;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--text);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-stats {
+ grid-template-columns: repeat(2, 1fr);
+ }
+
+ .steps, .pricing-cards {
+ grid-template-columns: 1fr;
+ }
+ }