Changed around line 1
+ :root {
+ --primary: #4f46e5;
+ --primary-dark: #4338ca;
+ --secondary: #f4f4f5;
+ --text: #18181b;
+ --text-light: #71717a;
+ --background: #ffffff;
+ --radius: 8px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1.5rem;
+ }
+
+ /* Header & Navigation */
+ header {
+ padding: 1.5rem 0;
+ background: var(--background);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo h1 {
+ font-size: 1.8rem;
+ background: linear-gradient(135deg, var(--primary), #8b5cf6);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Buttons */
+ .btn-primary, .btn-secondary {
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ cursor: pointer;
+ transition: var(--transition);
+ border: none;
+ }
+
+ .btn-primary {
+ background: var(--primary);
+ color: white;
+ }
+
+ .btn-primary:hover {
+ background: var(--primary-dark);
+ transform: translateY(-2px);
+ }
+
+ .btn-secondary {
+ background: var(--secondary);
+ color: var(--text);
+ }
+
+ .btn-secondary:hover {
+ background: #e4e4e7;
+ transform: translateY(-2px);
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 0 5rem;
+ text-align: center;
+ background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
+ }
+
+ .hero h2 {
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ }
+
+ .gradient-text {
+ background: linear-gradient(135deg, var(--primary), #8b5cf6);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ color: var(--text-light);
+ margin-bottom: 2rem;
+ }
+
+ .cta-group {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 5rem 0;
+ }
+
+ .features h3 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: var(--radius);
+ background: white;
+ box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
+ }
+
+ .feature-card .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h4 {
+ margin-bottom: 0.5rem;
+ }
+
+ /* Footer */
+ footer {
+ background: #f8fafc;
+ padding: 4rem 0;
+ margin-top: 4rem;
+ }
+
+ .footer-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-col h5 {
+ font-size: 1.1rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-col a {
+ display: block;
+ color: var(--text-light);
+ text-decoration: none;
+ margin-bottom: 0.5rem;
+ transition: var(--transition);
+ }
+
+ .footer-col a:hover {
+ color: var(--primary);
+ }
+
+ /* Mobile Menu */
+ .mobile-menu {
+ display: none;
+ flex-direction: column;
+ gap: 6px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 4px;
+ }
+
+ .mobile-menu span {
+ width: 24px;
+ height: 2px;
+ background: var(--text);
+ transition: var(--transition);
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: flex;
+ }
+
+ .hero h2 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero h2 {
+ font-size: 2rem;
+ }
+
+ .cta-group {
+ flex-direction: column;
+ }
+ }