Changed around line 1
+ :root {
+ --primary-color: #ffd700;
+ --secondary-color: #f5b642;
+ --text-color: #333;
+ --background-color: #fff;
+ --accent-color: #ff9900;
+ --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ overflow-x: hidden;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ box-shadow: 0 2px 20px 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: 2rem;
+ font-weight: 700;
+ background: var(--gradient);
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: var(--gradient);
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ color: white;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ color: white;
+ margin-bottom: 2rem;
+ }
+
+ .price-ticker {
+ display: inline-block;
+ background: rgba(255, 255, 255, 0.9);
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ font-size: 2rem;
+ font-weight: 700;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .feature {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature:hover {
+ transform: translateY(-5px);
+ }
+
+ .stats {
+ background: #f8f9fa;
+ padding: 4rem 2rem;
+ }
+
+ .stats-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .stat-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ .stat-value {
+ font-size: 2rem;
+ font-weight: 700;
+ color: var(--accent-color);
+ }
+
+ footer {
+ background: #333;
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: #ccc;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ flex-direction: column;
+ gap: 5px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ padding: 1rem;
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+ }