/* Reset and Base 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 !important;
    color: #1d3666 !important;
    background-color: #f0f7ff !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

h1 {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2.5rem !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 1.5rem !important;
}

h4 {
    font-size: 1.2rem !important;
}

p {
    margin-bottom: 1rem !important;
    color: #1d3666 !important;
    opacity: 0.8 !important;
}

/* Buttons */
.cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1d3666, #2a4a7a);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 54, 102, 0.3);
}

.cta-button.secondary {
    background: #fadce3;
    color: #1d3666;
}

.cta-button.secondary:hover {
    background: #f5c2cc;
    transform: translateY(-2px);
}

.cta-button.outline {
    background: transparent !important;
    color: #1d3666 !important;
    border: 2px solid #1d3666 !important;
}

.cta-button.outline:hover {
    background: #1d3666 !important;
    color: white !important;
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(250, 220, 227, 0.8) !important;
    color: #1d3666 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
}

.hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    min-height: 70vh !important;
}

.hero-text h1 {
    margin-bottom: 1.5rem !important;
    color: #1d3666 !important;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 2rem !important;
    color: #1d3666 !important;
    opacity: 0.9 !important;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d3666;
}

.stat span {
    font-size: 0.9rem;
    color: #1d3666;
    opacity: 0.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medical-illustration {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fadce3, #f0c5d1);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(29, 54, 102, 0.1);
}

.medical-illustration .fas.fa-laptop-medical {
    font-size: 6rem;
    color: #1d3666;
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(29, 54, 102, 0.15);
    animation: float 3s ease-in-out infinite;
}

.element i {
    font-size: 1.5rem;
    color: #1d3666;
}

.element-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: 1s;
}

.element-3 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 50%;
    left: 15%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Key Features Section */
.key-features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(29, 54, 102, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(29, 54, 102, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fadce3, #f0c5d1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #1d3666;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1d3666;
}

.feature-details {
    margin-top: 1.5rem;
}

.feature-details ul {
    list-style: none;
}

.feature-details li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1d3666;
    font-weight: bold;
}

/* Why Choose Section */
.why-choose {
    background: #f0f7ff;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.selling-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.point.animate {
    opacity: 1;
    transform: translateX(0);
}

.point i {
    font-size: 1.5rem;
    color: #1d3666;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.point h4 {
    margin-bottom: 0.5rem;
    color: #1d3666;
}

.point-features {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.point-features span {
    background: rgba(29, 54, 102, 0.1);
    color: #1d3666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Benefits Showcase */
.benefits-showcase {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(29, 54, 102, 0.1);
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h3 {
    color: #1d3666;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: #1d3666;
    opacity: 0.7;
    font-size: 0.95rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: #f0f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fadce3, #f0c5d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.metric-icon i {
    font-size: 1.5rem;
    color: #1d3666;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1d3666;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-weight: 600;
    color: #1d3666;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.metric-description {
    font-size: 0.8rem;
    color: #1d3666;
    opacity: 0.7;
    line-height: 1.4;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(29, 54, 102, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #1d3666;
    font-weight: 500;
}

.trust-item i {
    color: #1d3666;
    font-size: 1.1rem;
}

/* Implementation Process */
.implementation-process {
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1d3666, #2a4a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: #1d3666;
}

.timeline-duration {
    background: #fadce3;
    color: #1d3666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fadce3, #f0c5d1);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: #1d3666;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #1d3666;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d3666;
}

.cta-stat span {
    font-size: 1rem;
    color: #1d3666;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0 !important;
}

/* Contact Form Section */
.contact-form {
    background: white;
}

.form-content {
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.form-benefit i {
    color: #1d3666;
}

.demo-form {
    background: #f0f7ff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(29, 54, 102, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1d3666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(29, 54, 102, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d3666;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1rem;
    margin-bottom: 0 !important;
}

/* Our Products Section */
.our-products {
    background: #f0f7ff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(29, 54, 102, 0.08);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 54, 102, 0.15);
}

.product-card.current {
    border: 2px solid #1d3666;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fadce3, #f0c5d1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 2rem;
    color: #1d3666;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: #1d3666;
}

.product-features {
    margin: 1.5rem 0;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #1d3666;
    opacity: 0.8;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1d3666;
    font-weight: bold;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1d3666;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: #2a4a7a;
    transform: translateX(5px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1d3666;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.products-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(29, 54, 102, 0.08);
}

.products-cta h3 {
    margin-bottom: 1rem;
    color: #1d3666;
}

.products-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: white !important;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(29, 54, 102, 0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 1.5rem;
    background: #f0f7ff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e8f4fd;
}

.faq-question h3 {
    margin: 0 !important;
    color: #1d3666 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

.faq-question i {
    color: #1d3666 !important;
    transition: transform 0.3s ease !important;
}

.faq-answer {
    padding: 0 1.5rem !important;
    background: white !important;
    max-height: 0 ;
    overflow: hidden !important;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #1d3666;
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .medical-illustration {
        width: 280px;
        height: 280px;
    }

    .medical-illustration .fas.fa-laptop-medical {
        font-size: 4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .cta-stats {
        gap: 1.5rem;
    }

    .demo-form {
        padding: 2rem;
    }

    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-showcase {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .trust-indicators {
        align-items: center;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .medical-illustration {
        width: 220px;
        height: 220px;
    }

    .medical-illustration .fas.fa-laptop-medical {
        font-size: 3rem;
    }

    .element {
        width: 40px;
        height: 40px;
    }

    .element i {
        font-size: 1rem;
    }

    .demo-form {
        padding: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-showcase {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .showcase-header h3 {
        font-size: 1.3rem;
    }

    .product-card {
        padding: 2rem;
    }

    .products-cta {
        padding: 1.5rem;
    }
}

/* Animation delays for staggered effects */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.point:nth-child(1) { transition-delay: 0.1s; }
.point:nth-child(2) { transition-delay: 0.2s; }
.point:nth-child(3) { transition-delay: 0.3s; }
.point:nth-child(4) { transition-delay: 0.4s; }
.point:nth-child(5) { transition-delay: 0.5s; }
.point:nth-child(6) { transition-delay: 0.6s; }

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }

/* General Styles */
/*body {*/
/*    font-family: 'Arial', sans-serif;*/
/*    line-height: 1.6;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    background: #f4f4f4;*/
/*    color: #333;*/
/*}*/

/*.container {*/
/*    width: 80%;*/
/*    margin: auto;*/
/*    overflow: hidden;*/
/*    padding: 0 20px;*/
/*}*/

/* Showcase Section */
#showcase {
    min-height: 400px;
    background: url('../img/showcase.jpg') no-repeat 0 -100px;
    text-align: center;
    color: white;
}

#showcase h1 {
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}

#showcase p {
    font-size: 20px;
}

/* Newsletter Section */
#newsletter {
    padding: 15px;
    color: white;
    background: #35424a
}

#newsletter h1 {
    float: left;
}

#newsletter form {
    float: right;
    margin-top: 15px;
}

#newsletter input[type="email"] {
    padding: 4px;
    height: 25px;
    width: 250px;
}

/* Boxes Section */
#boxes {
    margin-top: 20px;
}

#boxes .box {
    float: left;
    text-align: center;
    width: 30%;
    padding: 10px;
}

#boxes .box img {
    width: 90px;
}

/* Sidebar */
aside#sidebar {
    float: right;
    width: 30%;
    margin-top: 10px;
    padding: 20px;
}

aside#sidebar .quote input, aside#sidebar .quote textarea {
    width: 90%;
    padding: 5px;
}

/* Main-col */
article#main-col {
    float: left;
    width: 65%;
}

/* Services */
ul#services {
    padding: 0;
}

ul#services li {
    list-style: none;
    padding: 20px;
    border: #cccccc solid 1px;
    margin-bottom: 5px;
    background: #e6e6e6;
}

/* Footer */
footer {
    padding: 20px;
    margin-top: 20px;
    color: white;
    background-color: #e8491d;
    text-align: center;
}

/* Media Queries */
@media(max-width: 768px) {
    header #branding,
    header nav,
    header nav li,
    #newsletter h1,
    #newsletter form,
    #boxes .box,
    aside#sidebar,
    article#main-col {
        float: none;
        text-align: center;
        width: 100%;
    }

    header {
        padding-bottom: 20px;
    }

    #showcase h1 {
        margin-top: 40px;
    }

    #newsletter form {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .medical-illustration {
        width: 220px;
        height: 220px;
    }

    .medical-illustration .fas.fa-laptop-medical {
        font-size: 3rem;
    }

    .element {
        width: 40px;
        height: 40px;
    }

    .element i {
        font-size: 1rem;
    }

    .demo-form {
        padding: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-showcase {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .showcase-header h3 {
        font-size: 1.3rem;
    }

    .product-card {
        padding: 2rem;
    }

    .products-cta {
        padding: 1.5rem;
    }
}

/* Animation delays for staggered effects */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.point:nth-child(1) { transition-delay: 0.1s; }
.point:nth-child(2) { transition-delay: 0.2s; }
.point:nth-child(3) { transition-delay: 0.3s; }
.point:nth-child(4) { transition-delay: 0.4s; }
.point:nth-child(5) { transition-delay: 0.5s; }
.point:nth-child(6) { transition-delay: 0.6s; }

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }
.faq-item:nth-child(6) { transition-delay: 0.6s; }
.faq-item:nth-child(7) { transition-delay: 0.7s; }
.faq-item:nth-child(8) { transition-delay: 0.8s; }
