Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-light: #3b82f6;
+ --secondary: #1e293b;
+ --light: #f8fafc;
+ --dark: #0f172a;
+ --gray: #64748b;
+ --light-gray: #e2e8f0;
+ --radius: 0.5rem;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ 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.5;
+ color: var(--secondary);
+ background-color: var(--light);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ /* Header & Navigation */
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-light));
+ color: white;
+ padding: 1rem 0;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ transition: all 0.2s;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: var(--shadow);
+ }
+
+ /* Hero Content */
+ .hero-content {
+ padding: 5rem 0;
+ max-width: 600px;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .button-group {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ text-decoration: none;
+ display: inline-block;
+ transition: all 0.2s;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary);
+ }
+
+ .secondary-button {
+ background: transparent;
+ color: white;
+ border: 2px solid white;
+ }
+
+ .primary-button:hover, .secondary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: var(--shadow);
+ }
+
+ /* Features Section */
+ .features {
+ padding: 5rem 0;
+ }
+
+ .features h2 {
+ text-align: center;
+ font-size: 2rem;
+ margin-bottom: 3rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ transition: transform 0.2s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ margin-bottom: 1rem;
+ font-size: 1.25rem;
+ }
+
+ .feature-card p {
+ color: var(--gray);
+ }
+
+ /* Testimonial */
+ .testimonial {
+ background: var(--primary);
+ color: white;
+ padding: 4rem 0;
+ text-align: center;
+ }
+
+ .testimonial-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .testimonial blockquote {
+ font-size: 1.5rem;
+ font-style: italic;
+ margin-bottom: 1rem;
+ }
+
+ .testimonial-author {
+ font-weight: 600;
+ }
+
+ /* Pricing Section */
+ .pricing {
+ padding: 5rem 0;
+ background: var(--light-gray);
+ }
+
+ .pricing h2 {
+ text-align: center;
+ font-size: 2rem;
+ margin-bottom: 3rem;
+ }
+
+ .pricing-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .pricing-card {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ text-align: center;
+ }
+
+ .pricing-card.featured {
+ border: 2px solid var(--primary);
+ transform: scale(1.05);
+ }
+
+ .pricing-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .price {
+ font-size: 2.5rem;
+ font-weight: 700;
+ margin-bottom: 1.5rem;
+ }
+
+ .price span:first-child {
+ color: var(--primary);
+ }
+
+ .price span:last-child {
+ font-size: 1rem;
+ font-weight: 400;
+ color: var(--gray);
+ }
+
+ .pricing-features {
+ list-style: none;
+ margin: 2rem 0;
+ }
+
+ .pricing-features li {
+ padding: 0.5rem 0;
+ border-bottom: 1px solid var(--light-gray);
+ }
+
+ .pricing-button {
+ display: inline-block;
+ width: 100%;
+ padding: 0.75rem;
+ background: var(--primary);
+ color: white;
+ border-radius: var(--radius);
+ text-decoration: none;
+ font-weight: 600;
+ transition: all 0.2s;
+ }
+
+ .pricing-button:hover {
+ background: var(--primary-light);
+ transform: translateY(-2px);
+ box-shadow: var(--shadow);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 4rem 0 2rem;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 3rem;
+ }
+
+ .footer-logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ margin-bottom: 1rem;
+ }
+
+ .link-group h4 {
+ margin-bottom: 1rem;
+ font-size: 1rem;
+ }
+
+ .link-group a {
+ display: block;
+ color: var(--light-gray);
+ text-decoration: none;
+ margin-bottom: 0.5rem;
+ transition: color 0.2s;
+ }
+
+ .link-group a:hover {
+ color: white;
+ }
+
+ .copyright {
+ grid-column: 1 / -1;
+ text-align: center;
+ padding-top: 2rem;
+ margin-top: 2rem;
+ border-top: 1px solid var(--gray);
+ color: var(--gray);
+ }
+
+ /* Responsive */
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .button-group {
+ flex-direction: column;
+ }
+
+ .pricing-card.featured {
+ transform: none;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .hero-content {
+ padding: 3rem 0;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+ }