/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    gap: 8px;
}

.btn-primary {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.btn-primary:hover {
    background: #4338CA;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border-color: #D1D5DB;
}

.btn-secondary:hover {
    background: #F3F4F6;
    border-color: #9CA3AF;
    transform: translateY(-2px);
}

.btn-accent {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

.btn-accent:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-light {
    background: white;
    color: #4F46E5;
    border-color: white;
}

.btn-light:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-brand .brand-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-link {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4F46E5;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle i {
    font-size: 20px;
    color: #374151;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 8px;
}

.stat-label {
    color: #6B7280;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #4F46E5;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon.accent {
    background: rgba(16, 185, 129, 0.1);
}

.service-icon.security {
    background: rgba(239, 68, 68, 0.1);
}

.service-icon i {
    font-size: 24px;
    color: #4F46E5;
}

.service-icon.accent i {
    color: #10B981;
}

.service-icon.security i {
    color: #EF4444;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

.service-description {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
}

.service-features i {
    color: #10B981;
    font-size: 12px;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    background: #F8FAFC;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
    border-color: #4F46E5;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #10B981;
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-bottom-left-radius: 8px;
}

.pricing-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
}

.pricing-features i {
    color: #10B981;
    font-size: 12px;
    flex-shrink: 0;
}

/* Why Choose Us Section */
.why-choose {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #4F46E5;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon.accent {
    background: rgba(16, 185, 129, 0.1);
}

.feature-icon.security {
    background: rgba(239, 68, 68, 0.1);
}

.feature-icon i {
    font-size: 32px;
    color: #4F46E5;
}

.feature-icon.accent i {
    color: #10B981;
}

.feature-icon.security i {
    color: #EF4444;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

.feature-description {
    color: #6B7280;
    line-height: 1.7;
}

/* Market Analysis Section */
.market-analysis {
    background: #F8FAFC;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.analysis-card {
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #10B981;
}

.analysis-number {
    font-size: 48px;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 16px;
}

.analysis-label {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.analysis-description {
    color: #6B7280;
    line-height: 1.7;
    font-size: 14px;
}

/* Methodology Section */
.methodology {
    background: white;
}

.methodology-intro {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-steps {
    display: grid;
    gap: 32px;
}

.method-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.step-description {
    color: #6B7280;
    line-height: 1.7;
}

/* Standards Section */
.standards {
    background: #F8FAFC;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.standard-item {
    text-align: center;
}

.standard-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.standard-icon i {
    font-size: 32px;
    color: white;
}

.standard-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

.standard-description {
    color: #6B7280;
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #4F46E5, #4338CA);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    margin-bottom: 32px;
}

.guarantee-icon i {
    font-size: 80px;
    opacity: 0.8;
}

.guarantee-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.guarantee-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1F2937;
    color: #D1D5DB;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .brand-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 24px;
    color: #9CA3AF;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F46E5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4F46E5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    color: #4F46E5;
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-title {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.contact-details {
    color: #9CA3AF;
    line-height: 1.6;
}

.emergency-support {
    color: #10B981;
    font-weight: 600;
}

.domain-link {
    color: #4F46E5;
    text-decoration: none;
}

.domain-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    background: #374151;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #D1D5DB;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #E5E7EB;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .nav-cta {
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid,
    .analysis-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .standards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-grid,
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide-up.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Form styles */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #4F46E5;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* Contact page specific styles */
.contact-form {
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 16px;
    padding: 32px;
}

.contact-info-grid {
    display: grid;
    gap: 24px;
}

.contact-info-card {
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #4F46E5;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon.accent {
    background: rgba(16, 185, 129, 0.1);
}

.contact-icon.security {
    background: rgba(239, 68, 68, 0.1);
}

.contact-icon i {
    font-size: 20px;
    color: #4F46E5;
}

.contact-icon.accent i {
    color: #10B981;
}

.contact-icon.security i {
    color: #EF4444;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.contact-card-details {
    color: #6B7280;
    line-height: 1.6;
}

.contact-card-details a {
    color: #4F46E5;
    text-decoration: none;
}

.contact-card-details a:hover {
    text-decoration: underline;
}

/* Legal content styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #374151;
}

.legal-content h2 {
    color: #1F2937;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    color: #374151;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.last-updated {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    color: #4F46E5;
}

/* FAQ styles */
.faq-section { 
    margin-bottom: 40px; 
}

.faq-item { 
    background: white; 
    border: 2px solid #F1F5F9; 
    border-radius: 12px; 
    margin-bottom: 16px; 
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { 
    border-color: #4F46E5; 
}

.faq-question { 
    padding: 24px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-weight: 600;
    color: #1F2937;
}

.faq-answer { 
    padding: 0 24px 24px; 
    color: #6B7280; 
    line-height: 1.7;
    display: none;
}

.faq-answer.active { 
    display: block; 
}

.faq-icon { 
    transition: transform 0.3s ease; 
}

.faq-item.active .faq-icon { 
    transform: rotate(180deg); 
}
