Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --secondary: #1e40af;
+ --accent: #60a5fa;
+ --dark: #1f2937;
+ --light: #f3f4f6;
+ --white: #ffffff;
+ --max-width: 1200px;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ }
+
+ .container {
+ max-width: var(--max-width);
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ /* Navigation */
+ .navbar {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 2rem;
+ background: var(--white);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ color: var(--primary);
+ text-decoration: none;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--dark);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 2rem 4rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: var(--white);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ }
+
+ .hero-graphic {
+ position: absolute;
+ right: -5%;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 50%;
+ height: 80%;
+ background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
+ opacity: 0.3;
+ animation: pulse 4s ease-in-out infinite;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 6rem 0;
+ background: var(--light);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ width: 60px;
+ height: 60px;
+ margin-bottom: 1.5rem;
+ border-radius: 50%;
+ background: var(--primary);
+ opacity: 0.9;
+ }
+
+ /* Insights Section */
+ .insights {
+ padding: 6rem 0;
+ }
+
+ .insight-dashboard {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .metric-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ text-align: center;
+ }
+
+ .metric {
+ font-size: 2.5rem;
+ font-weight: 700;
+ color: var(--primary);
+ margin-top: 1rem;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 6rem 0;
+ background: var(--light);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 3rem auto 0;
+ display: grid;
+ gap: 1.5rem;
+ }
+
+ .contact-form input {
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 5px;
+ font-size: 1rem;
+ transition: border-color 0.3s ease;
+ }
+
+ .contact-form input:focus {
+ border-color: var(--primary);
+ outline: none;
+ }
+
+ /* Buttons */
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: var(--white);
+ border: none;
+ border-radius: 5px;
+ font-size: 1rem;
+ font-weight: 500;
+ text-decoration: none;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--secondary);
+ }
+
+ /* Footer */
+ footer {
+ padding: 4rem 0;
+ background: var(--dark);
+ color: var(--white);
+ }
+
+ .footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: var(--white);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .footer-links a:hover {
+ color: var(--accent);
+ }
+
+ /* Animations */
+ @keyframes pulse {
+ 0% { transform: translateY(-50%) scale(1); }
+ 50% { transform: translateY(-50%) scale(1.1); }
+ 100% { transform: translateY(-50%) scale(1); }
+ }
+
+ /* Mobile Responsiveness */
+ @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(--dark);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--white);
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-graphic {
+ display: none;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }