/* 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;
    color: #2d3748;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a365d;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a365d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #2b6cb0;
    color: white;
    border-color: #2b6cb0;
}

.btn-primary:hover {
    background-color: #2c5282;
    border-color: #2c5282;
}

.btn-secondary {
    background-color: transparent;
    color: #2b6cb0;
    border-color: #2b6cb0;
}

.btn-secondary:hover {
    background-color: #2b6cb0;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
}

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

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

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

.hero-feature span {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-disclaimer {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 16px;
    margin-top: 1rem;
}

.hero-disclaimer p {
    margin: 0;
    font-size: 0.85rem;
    color: #742a2a;
    line-height: 1.4;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-image {
    width: 100%;
    height: 350px;
    position: relative;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.hero-stat {
    text-align: center;
    padding: 16px 12px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 4px;
}

.hero-stat span {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-weight: 500;
    border: 2px dashed #cbd5e0;
}

/* Modern Image Styles */
.hero-main-image,
.tech-main-image,
.content-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.product-card:hover .product-img {
    transform: scale(1.02);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.tech-image {
    height: 350px;
}

.content-image {
    height: 300px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background-color: #f7fafc;
}

.technology .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.tech-item strong {
    color: #1a365d;
    font-weight: 600;
}

.tech-item span {
    color: #718096;
    font-size: 0.9rem;
}

/* Compliance Section */
.compliance {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.compliance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
}

.compliance-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.compliance-certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-item {
    padding: 12px 24px;
    background-color: #e6fffa;
    color: #2c7a7b;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid #b2f5ea;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2b6cb0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 16px;
    color: #1a365d;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.product-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    background-color: #f8fafc;
    text-align: center;
}

.product-image {
    margin-bottom: 24px;
}

.product-image .image-placeholder {
    height: 200px;
    background-color: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-weight: 500;
    border: 2px dashed #cbd5e0;
}

.product-name {
    margin-bottom: 16px;
    color: #1a365d;
}

.product-description {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-tag {
    padding: 6px 12px;
    background-color: #e6fffa;
    color: #2c7a7b;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-btn {
    width: 100%;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.reason {
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.reason h3 {
    margin-bottom: 16px;
    color: #1a365d;
}

.reason p {
    color: #4a5568;
    line-height: 1.6;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

.trust-testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #2b6cb0;
}

.trust-testimonial blockquote {
    font-size: 1.25rem;
    color: #1a365d;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.trust-testimonial cite {
    color: #718096;
    font-size: 0.95rem;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #1a365d;
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #a0aec0;
}

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

.contact-item {
    padding: 30px 20px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.contact-item h3 {
    color: white;
    margin-bottom: 12px;
}

.contact-link {
    color: #63b3ed;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: #90cdf4;
}

.contact-address {
    color: #a0aec0;
    line-height: 1.6;
}

.contact-cta {
    margin-top: 3rem;
}

.contact .btn-primary {
    background-color: #63b3ed;
    border-color: #63b3ed;
}

.contact .btn-primary:hover {
    background-color: #4299e1;
    border-color: #4299e1;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #2d3748;
    color: #a0aec0;
}

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

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

.footer .brand {
    margin-bottom: 16px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-tagline {
    color: #718096;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links {
    display: flex;
    flex-direction: column;
}

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

.footer-contact p,
.footer-links p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-links a {
    color: #63b3ed;
    text-decoration: none;
}

.footer-links a:hover {
    color: #90cdf4;
}

.footer-contact a {
    color: #63b3ed;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #90cdf4;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .technology .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .compliance-certifications {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .features-grid,
    .steps-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}