Changed around line 1
+ :root {
+ --primary-color: #6e44ff;
+ --secondary-color: #2a2a4a;
+ --accent-color: #00f7ff;
+ --background: #0a0a1f;
+ --text-color: #ffffff;
+ --card-bg: rgba(255, 255, 255, 0.05);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ background: var(--background);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ backdrop-filter: blur(10px);
+ background: rgba(10, 10, 31, 0.8);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 6rem 2rem 2rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::before {
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle at 50% 50%, var(--primary-color) 0%, transparent 70%);
+ opacity: 0.1;
+ z-index: -1;
+ }
+
+ .hero-content {
+ flex: 1;
+ max-width: 600px;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1.5rem;
+ line-height: 1.2;
+ background: linear-gradient(45deg, var(--text-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ border: none;
+ border-radius: 50px;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ color: var(--text-color);
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: scale(1.05);
+ }
+
+ .floating-phone {
+ width: 300px;
+ height: 600px;
+ border: 2px solid var(--accent-color);
+ border-radius: 30px;
+ position: relative;
+ animation: float 6s ease-in-out infinite;
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ .scanning-line {
+ position: absolute;
+ width: 100%;
+ height: 2px;
+ background: var(--accent-color);
+ top: 0;
+ animation: scan 2s linear infinite;
+ }
+
+ @keyframes scan {
+ 0% { top: 0; }
+ 100% { top: 100%; }
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .feature-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ backdrop-filter: blur(10px);
+ border: 1px solid rgba(255, 255, 255, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ section {
+ padding: 5rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ }
+
+ .steps {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ gap: 2rem;
+ }
+
+ .step {
+ flex: 1;
+ min-width: 250px;
+ text-align: center;
+ }
+
+ .step-number {
+ width: 50px;
+ height: 50px;
+ border-radius: 50%;
+ background: var(--primary-color);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto 1rem;
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links a, .footer-social a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ opacity: 0.8;
+ transition: opacity 0.3s ease;
+ }
+
+ .footer-links a:hover, .footer-social a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .floating-phone {
+ width: 200px;
+ height: 400px;
+ margin-top: 2rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }