Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --secondary: #64748b;
+ --accent: #f59e0b;
+ --background: #ffffff;
+ --text: #1e293b;
+ --gray-light: #f1f5f9;
+ --gray-dark: #334155;
+ --radius: 8px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ 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 2rem;
+ }
+
+ /* Typography */
+ h1 {
+ font-size: clamp(2.5rem, 5vw, 4rem);
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ }
+
+ h2 {
+ font-size: clamp(2rem, 4vw, 3rem);
+ margin-bottom: 2rem;
+ text-align: center;
+ }
+
+ h3 {
+ font-size: clamp(1.5rem, 3vw, 2rem);
+ margin-bottom: 1rem;
+ }
+
+ /* Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ background: var(--background);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 0 4rem;
+ background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-graphic {
+ position: absolute;
+ right: -5%;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 50%;
+ height: 80%;
+ background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
+ border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
+ opacity: 0.1;
+ animation: morphing 15s ease-in-out infinite;
+ }
+
+ @keyframes morphing {
+ 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
+ 50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
+ 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
+ }
+
+ /* Buttons */
+ .primary-button, .secondary-button {
+ padding: 1rem 2rem;
+ border-radius: var(--radius);
+ border: none;
+ font-weight: 600;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .primary-button {
+ background: var(--primary);
+ color: white;
+ }
+
+ .primary-button:hover {
+ background: var(--primary-dark);
+ transform: translateY(-2px);
+ }
+
+ .secondary-button {
+ background: var(--gray-light);
+ color: var(--text);
+ }
+
+ .secondary-button:hover {
+ background: var(--gray-dark);
+ color: white;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 6rem 0;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ background: white;
+ border-radius: var(--radius);
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 12px rgba(0,0,0,0.15);
+ }
+
+ /* Benefits Section */
+ .benefits {
+ padding: 6rem 0;
+ background: var(--gray-light);
+ }
+
+ .benefits-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 3rem;
+ text-align: center;
+ }
+
+ .benefit h3 {
+ font-size: 3rem;
+ color: var(--primary);
+ }
+
+ /* Demo Section */
+ .demo {
+ padding: 6rem 0;
+ }
+
+ .demo-container {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 4rem;
+ align-items: center;
+ }
+
+ .demo-video {
+ background: var(--gray-light);
+ border-radius: var(--radius);
+ aspect-ratio: 16/9;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 6rem 0;
+ background: var(--gray-light);
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ #contact-form input {
+ padding: 1rem;
+ border: 2px solid var(--gray-dark);
+ border-radius: var(--radius);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--gray-dark);
+ color: white;
+ padding: 4rem 0;
+ }
+
+ .footer-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 3rem;
+ }
+
+ .footer-col ul {
+ list-style: none;
+ }
+
+ .footer-col a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-col a:hover {
+ color: var(--accent);
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--background);
+ padding: 1rem;
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .demo-container {
+ grid-template-columns: 1fr;
+ }
+ }