/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1B2951 0%, #2A3B6B 100%);
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
}

.features-image {
    margin-top: 3rem;
    text-align: center;
}

.section-photo {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.how-it-works h2 {
    color: #1B2951;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00CED1, #9CAF88);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #1B2951;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step p {
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.products h2 {
    color: #1B2951;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.featured {
    border: 2px solid #00CED1;
    transform: scale(1.05);
}

.product-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00CED1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card h3 {
    color: #1B2951;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #00CED1;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    color: #4B5563;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9CAF88;
    font-weight: bold;
}

.btn-product {
    background: #00CED1;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-product:hover {
    background: #00B8CC;
    transform: translateY(-2px);
}

/* Target Audience */
.audience {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.audience h2 {
    color: #1B2951;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: #F8FAFC;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.audience-card h3 {
    color: #1B2951;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.audience-card p {
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Technology Integration */
.integration {
    padding: 5rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.integration h2 {
    color: #1B2951;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.integration-text {
    text-align: left;
}

.integration-text h3 {
    color: #1B2951;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.integration-text p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-list li {
    padding: 0.5rem 0;
    color: #4B5563;
    position: relative;
    padding-left: 1.5rem;
}

.integration-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00CED1;
    font-weight: bold;
}

.integration-image {
    text-align: center;
}

/* Benefits */
.benefits {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.benefits h2 {
    color: #1B2951;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-stat {
    background: #F8FAFC;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.benefit-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00CED1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #1B2951;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.testimonials h2 {
    color: #1B2951;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    color: #4B5563;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    text-align: left;
    border-top: 1px solid #E2E8F0;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #1B2951;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748B;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.contact h2 {
    color: #1B2951;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    color: #1B2951;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #4B5563;
}

.contact-item strong {
    color: #1B2951;
    display: inline-block;
    width: 80px;
}

.contact-item a {
    color: #00CED1;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: left;
}

.contact-cta h3 {
    color: #1B2951;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-cta p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
}

.contact-buttons .btn {
    flex: 1;
    text-align: center;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1B2951;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B2951;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4B5563;
}

/* Header */
.header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B2951;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #00CED1;
    color: white;
}

.btn-primary:hover {
    background: #00B8CC;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #00CED1;
    border: 2px solid #00CED1;
}

.btn-secondary:hover {
    background: #00CED1;
    color: white;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #F0F8F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: #1B2951;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #1B2951;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-brand .logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9CA3AF;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.footer-column a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #00CED1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.footer-contact p {
    color: #9CA3AF;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-photo {
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-photo {
        height: 200px;
    }
}