Changed around line 1
+ :root {
+ --primary-color: #25D366;
+ --secondary-color: #128C7E;
+ --dark-color: #075E54;
+ --light-color: #DCF8C6;
+ --text-color: #333;
+ --white: #ffffff;
+ }
+
+ * {
+ 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(--text-color);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: var(--white);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ z-index: 1000;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 2rem 4rem;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .hero-content {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1.5rem;
+ color: var(--dark-color);
+ }
+
+ .phone-mockup {
+ position: relative;
+ width: 300px;
+ height: 600px;
+ background: var(--dark-color);
+ border-radius: 30px;
+ padding: 10px;
+ margin: 0 auto;
+ }
+
+ .screen {
+ background: var(--white);
+ height: 100%;
+ border-radius: 20px;
+ overflow: hidden;
+ position: relative;
+ }
+
+ .chat-interface {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: linear-gradient(45deg, var(--light-color) 25%, transparent 25%),
+ linear-gradient(-45deg, var(--light-color) 25%, transparent 25%);
+ background-size: 20px 20px;
+ animation: slide 20s linear infinite;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 4rem 2rem;
+ background: var(--light-color);
+ }
+
+ .features h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Pricing Section */
+ .pricing {
+ padding: 4rem 2rem;
+ }
+
+ .pricing-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 2rem auto;
+ }
+
+ .price-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ .price-card.featured {
+ transform: scale(1.05);
+ border: 2px solid var(--primary-color);
+ }
+
+ .price {
+ font-size: 2.5rem;
+ color: var(--primary-color);
+ margin: 1rem 0;
+ }
+
+ .price span {
+ font-size: 1rem;
+ color: var(--text-color);
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 4rem 2rem;
+ background: var(--light-color);
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ input {
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ /* Common Components */
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary-color);
+ color: var(--white);
+ text-decoration: none;
+ border-radius: 5px;
+ border: none;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--secondary-color);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--dark-color);
+ color: var(--white);
+ padding: 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu {
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: block;
+ }
+
+ .hero {
+ grid-template-columns: 1fr;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .phone-mockup {
+ width: 250px;
+ height: 500px;
+ }
+ }
+
+ @keyframes slide {
+ from { background-position: 0 0; }
+ to { background-position: 40px 40px; }
+ }