Changed around line 1
+ :root {
+ --primary-color: #2a6ef5;
+ --secondary-color: #1d4ed8;
+ --accent-color: #60a5fa;
+ --text-color: #1f2937;
+ --bg-color: #ffffff;
+ --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ .hero-header {
+ background: var(--gradient);
+ color: white;
+ padding: 1rem 2rem;
+ }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ background: linear-gradient(to right, #fff, var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .hero {
+ min-height: 80vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: var(--gradient);
+ color: white;
+ padding: 2rem;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 0.8s ease;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.1rem;
+ border: none;
+ border-radius: 50px;
+ background: white;
+ color: var(--primary-color);
+ cursor: pointer;
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 1rem;
+ background: white;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ text-align: center;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-card span {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ display: block;
+ }
+
+ .interactive-demo {
+ padding: 4rem 2rem;
+ background: #f8fafc;
+ }
+
+ .demo-container {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ .contact-section {
+ padding: 4rem 2rem;
+ background: var(--gradient);
+ color: white;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ padding: 1rem;
+ border: none;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ .main-footer {
+ padding: 2rem;
+ text-align: center;
+ background: var(--text-color);
+ color: white;
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .features-grid {
+ grid-template-columns: 1fr;
+ }
+ }