Changed around line 1
+ :root {
+ --primary: #2C3E50;
+ --secondary: #3498DB;
+ --accent: #E74C3C;
+ --light: #ECF0F1;
+ --dark: #2C3E50;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
+ min-height: 100vh;
+ color: white;
+ padding: 2rem;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, #fff, var(--light));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--accent);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ font-weight: bold;
+ }
+
+ .hero-content {
+ text-align: center;
+ margin-top: 10vh;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, #fff, var(--light));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .cta-group {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ text-decoration: none;
+ font-weight: bold;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button {
+ background: var(--accent);
+ color: white;
+ }
+
+ .secondary-button {
+ background: transparent;
+ border: 2px solid white;
+ color: white;
+ }
+
+ .primary-button:hover, .secondary-button:hover {
+ transform: translateY(-3px);
+ }
+
+ section {
+ padding: var(--spacing);
+ }
+
+ .product-grid, .tech-features {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .product-card {
+ background: white;
+ border-radius: 15px;
+ padding: 2rem;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .product-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid var(--light);
+ border-radius: 8px;
+ font-size: 1rem;
+ }
+
+ .submit-button {
+ background: var(--accent);
+ color: white;
+ border: none;
+ padding: 1rem;
+ border-radius: 8px;
+ cursor: pointer;
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--primary);
+ color: white;
+ padding: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .cta-group {
+ flex-direction: column;
+ }
+ }