.home { min-height: calc(100vh - 72px); } /* Hero Section */ .hero { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: #333; } .hero p { font-size: 1.5rem; color: #666; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; } .hero-actions { display: flex; gap: 1rem; justify-content: center; } /* Social Proof Section */ .social-proof { background: #f8f9fa; padding: 4rem 2rem; text-align: center; } .social-proof h2 { font-size: 2rem; margin-bottom: 3rem; color: #333; } .company-logos { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; } .company-logos img { height: 40px; opacity: 0.7; transition: opacity 0.2s; } .company-logos img:hover { opacity: 1; } /* Mid CTA Section */ .mid-cta { background: var(--primary-color); color: white; padding: 4rem 2rem; text-align: center; } .mid-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; } .mid-cta p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; } /* Problems Section */ .problems { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; } .problems h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #333; } .problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .problem-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .problem-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; } .problem-card p { color: #666; line-height: 1.6; } /* Competition Section */ .competition { background: #f8f9fa; padding: 6rem 2rem; } .competition h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #333; } .comparison-table { max-width: 900px; margin: 0 auto; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .comparison-row { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; padding: 1.25rem; border-bottom: 1px solid #eee; align-items: center; } .comparison-row:last-child { border-bottom: none; } .comparison-row.header { background: var(--primary-color); color: white; font-weight: 600; padding: 1rem 1.25rem; } .comparison-row.header > div { font-size: 1.1rem; } .comparison-row > div:first-child { font-weight: 500; color: #333; } .comparison-row > div:nth-child(2) { color: #666; } .comparison-row > div:last-child { color: var(--primary-color); font-weight: 500; } /* Add hover effect */ .comparison-row:not(.header):hover { background: var(--primary-color-light); } /* Mobile responsive adjustments */ @media (max-width: 768px) { .comparison-row { padding: 1rem; font-size: 0.9rem; } .comparison-row.header > div { font-size: 1rem; } } @media (max-width: 480px) { .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 0.8rem; } } /* Getting Started Section */ .getting-started { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; } .getting-started h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #333; } .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .step { text-align: center; padding: 2rem; } .step-number { width: 40px; height: 40px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto 1rem; } .step h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; } .step p { color: #666; } /* Testimonials Section */ .testimonials { background: #f8f9fa; padding: 6rem 2rem; } .testimonials h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #333; } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; } .testimonial { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .testimonial-content { font-size: 1.1rem; color: #333; margin-bottom: 1.5rem; line-height: 1.6; } .testimonial-author { display: flex; align-items: center; gap: 1rem; } .testimonial-author img { width: 50px; height: 50px; border-radius: 50%; } .testimonial-author h4 { margin: 0; color: #333; } .testimonial-author p { margin: 0; color: #666; font-size: 0.9rem; } /* Final CTA Section */ .final-cta { padding: 6rem 2rem; text-align: center; background: var(--primary-color); color: white; } .final-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; } .final-cta p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; } .cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; } .cta-subtext { font-size: 0.9rem; opacity: 0.8; } /* Buttons */ .cta-button { background: white; color: var(--primary-color); padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1.1rem; transition: all 0.2s; } .cta-button:hover { transform: translateY(-2px); box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .secondary-button { background: transparent; color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1.1rem; border: 2px solid white; transition: all 0.2s; } .secondary-button:hover { background: rgba(255,255,255,0.1); } /* Responsive Design */ @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .hero-actions { flex-direction: column; } .comparison-row { font-size: 0.9rem; } .testimonial-grid { grid-template-columns: 1fr; } } /* Update the hero section button styles */ .hero .cta-button { background: var(--primary-color); color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1.1rem; transition: all 0.2s; } .hero .cta-button:hover { transform: translateY(-2px); box-shadow: 0 4px 6px rgba(0,0,0,0.1); opacity: 0.9; } .hero .secondary-button { background: transparent; color: var(--primary-color); padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1.1rem; border: 2px solid var(--primary-color); transition: all 0.2s; } .hero .secondary-button:hover { background: var(--primary-color-light); } /* Keep the existing button styles for other sections */ .mid-cta .cta-button, .final-cta .cta-button { background: white; color: var(--primary-color); } .mid-cta .secondary-button, .final-cta .secondary-button { background: transparent; color: white; border-color: white; }