Changed around line 1
+ :root {
+ --primary-color: #2962ff;
+ --secondary-color: #0039cb;
+ --background-color: #f8f9fa;
+ --text-color: #2c3e50;
+ --card-shadow: 0 8px 30px rgba(0,0,0,0.12);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ /* Navigation */
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: white;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ }
+
+ .hero-content {
+ max-width: 800px;
+ padding: 2rem;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ /* Indicators Section */
+ .indicators {
+ padding: 5rem 5%;
+ }
+
+ .indicator-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .indicator-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: var(--card-shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .indicator-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .indicator-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Pricing Section */
+ .pricing {
+ padding: 5rem 5%;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ }
+
+ .pricing-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .pricing-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: var(--card-shadow);
+ text-align: center;
+ }
+
+ .pricing-card.featured {
+ transform: scale(1.05);
+ border: 2px solid var(--primary-color);
+ }
+
+ .price {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ margin: 1rem 0;
+ }
+
+ .price span {
+ font-size: 1rem;
+ color: var(--text-color);
+ }
+
+ /* Buttons */
+ button {
+ padding: 0.8rem 2rem;
+ border: none;
+ border-radius: 50px;
+ font-weight: bold;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--primary-color);
+ color: white;
+ font-size: 1.2rem;
+ margin-top: 2rem;
+ }
+
+ .cta-button:hover {
+ background: var(--secondary-color);
+ transform: translateY(-2px);
+ }
+
+ .preview-button, .subscribe-button {
+ background: transparent;
+ color: var(--primary-color);
+ border: 2px solid var(--primary-color);
+ margin-top: 1rem;
+ }
+
+ .preview-button:hover, .subscribe-button:hover {
+ background: var(--primary-color);
+ color: white;
+ }
+
+ /* Footer */
+ footer {
+ background: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ color: var(--primary-color);
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Mobile Responsiveness */
+ .nav-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 5px;
+ cursor: pointer;
+ }
+
+ .nav-toggle span {
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ transition: all 0.3s ease;
+ }
+
+ @media (max-width: 768px) {
+ .nav-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .pricing-card.featured {
+ transform: none;
+ }
+ }