/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Common Components */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Header and Brand */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 64px;
}

.brand {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

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

.header-contact {
    display: flex;
    align-items: center;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.call-button:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    padding: 0 0 96px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: 64px;
}

.hero-content p {
    font-size: 1.375rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cta-primary {
    background: #2563eb;
    color: white;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.cta-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background: #2563eb;
    color: white;
}

.hero-image-placeholder {
    background: transparent;
    border-radius: 12px;
    margin-top: 64px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.content-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-visual {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 96px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    display: block;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Content Split Sections */
.call-analysis,
.ai-search,
.task-tracking {
    padding: 96px 0;
}

.call-analysis {
    background: white;
}

.ai-search {
    background: #f8fafc;
}

.task-tracking {
    background: white;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    color: #1f2937;
    margin-bottom: 24px;
}

.content-text p {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #374151;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Products Section */
.products {
    padding: 96px 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    border: 2px solid #e5e7eb;
    position: relative;
    text-align: center;
}

.product-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-header h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
}

.product-header p {
    color: #6b7280;
    margin-bottom: 32px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.product-features li {
    padding: 8px 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s ease;
}

.product-button:hover {
    background: #1d4ed8;
}

/* Benefits Section */
.benefits {
    padding: 96px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 32px 24px;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 16px;
}

.benefit-item h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.benefit-item p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 96px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

.testimonial-content p {
    font-size: 1.125rem;
    color: #374151;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    width: 24px;
    height: 24px;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 96px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-details p {
    color: #6b7280;
    margin-bottom: 0;
}

.contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-large {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 48px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-icon {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 64px 0 32px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 16px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0;
}

/* Enhanced button hover effects - Pure CSS */
.cta-primary,
.cta-secondary,
.product-button,
.call-button,
.cta-large {
    position: relative;
    overflow: hidden;
}

.cta-primary:active,
.product-button:active,
.call-button:active,
.cta-large:active {
    transform: scale(0.98);
}

.cta-secondary:active {
    transform: scale(0.98);
}

/* Smooth scroll for anchor links - Pure CSS */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.cta-primary:focus,
.cta-secondary:focus,
.product-button:focus,
.call-button:focus,
.cta-large:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .content-split.reverse {
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .hero-image-placeholder,
    .content-image {
        height: 250px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .cta-large {
        padding: 20px 32px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 250px;
    }
    
    .content-image {
        height: 200px;
    }
    
    .feature-card,
    .product-card,
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .call-analysis,
    .ai-search,
    .task-tracking,
    .products,
    .benefits,
    .testimonials,
    .contact {
        padding: 64px 0;
    }
    
    .footer {
        padding: 48px 0 24px 0;
    }
}