Changed around line 1
+ :root {
+ --primary-color: #0a192f;
+ --secondary-color: #172a45;
+ --accent-color: #64ffda;
+ --text-primary: #ffffff;
+ --text-secondary: #8892b0;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ background: var(--primary-color);
+ color: var(--text-primary);
+ line-height: 1.6;
+ }
+
+ .hero-section {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ min-height: 100vh;
+ padding: 2rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ background: linear-gradient(90deg, #fff, var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-primary);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--accent-color);
+ color: var(--primary-color) !important;
+ padding: 0.8rem 1.5rem;
+ border-radius: 5px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ text-align: center;
+ margin-top: 8rem;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(90deg, #fff, var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-buttons {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 1rem 2rem;
+ border-radius: 5px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button {
+ background: var(--accent-color);
+ color: var(--primary-color);
+ }
+
+ .secondary-button {
+ border: 2px solid var(--accent-color);
+ color: var(--accent-color);
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .feature-card {
+ background: var(--secondary-color);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .pricing-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .pricing-card {
+ background: var(--secondary-color);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .pricing-card.featured {
+ border: 2px solid var(--accent-color);
+ transform: scale(1.05);
+ }
+
+ .price {
+ font-size: 2.5rem;
+ font-weight: 700;
+ color: var(--accent-color);
+ margin: 1rem 0;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--text-secondary);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-buttons {
+ flex-direction: column;
+ }
+
+ .pricing-cards {
+ grid-template-columns: 1fr;
+ }
+ }