/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4ade80;
}

.cta-button {
    background-color: #4ade80;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #22c55e;
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.secondary-button {
    background-color: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    border-color: #4ade80;
    color: #4ade80;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #4ade80;
}

.hero-description {
    font-size: 1.25rem;
    color: #a3a3a3;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-item {
    padding: 2rem 0;
}

.feature-number {
    color: #4ade80;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-number::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.feature-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-item p {
    color: #a3a3a3;
    line-height: 1.6;
}

/* Case Study Section */
.case-study {
    padding: 4rem 2rem;
    background-color: #111111;
    margin: 2rem 0;
}

.case-study-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.case-study-text {
    font-size: 1.125rem;
    color: #a3a3a3;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-label {
    font-size: 0.875rem;
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Platform Section */
.platform-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.platform-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.platform-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #a3a3a3;
}

.platform-content p {
    font-size: 1.125rem;
    color: #a3a3a3;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Capabilities Section */
.capabilities {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.capability-item {
    padding: 2rem 0;
}

.capability-number {
    color: #4ade80;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.capability-number::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.capability-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.capability-item p {
    color: #a3a3a3;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.big-stat {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 8rem;
    font-weight: 700;
    color: #4ade80;
    line-height: 1;
}

.stat-symbol {
    font-size: 4rem;
    font-weight: 700;
    color: #4ade80;
    margin-left: 0.5rem;
}

.stat-description {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.stat-explanation {
    font-size: 1rem;
    color: #a3a3a3;
    max-width: 600px;
    margin: 0 auto;
}

/* Focus Section */
.focus-section {
    padding: 4rem 2rem;
    background-color: #111111;
    margin: 2rem 0;
}

.focus-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.focus-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.focus-list {
    list-style: none;
    text-align: left;
}

.focus-list li {
    color: #a3a3a3;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.focus-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

/* Testimonial Section */
.testimonial {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.testimonial-content cite {
    color: #a3a3a3;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #a3a3a3;
    margin-top: 1rem;
}

.footer-logo {
    color: #ffffff;
    text-decoration: none;
}

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

.footer-column a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4ade80;
}

.footer-contact p {
    color: #a3a3a3;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.875rem;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #4ade80;
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #4ade80;
    background-color: rgba(74, 222, 128, 0.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4ade80;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4ade80;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #4ade80;
}

.period {
    font-size: 1rem;
    color: #a3a3a3;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #a3a3a3;
    position: relative;
    padding-left: 1.5rem;
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 600;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #4ade80;
    color: #000000;
    padding: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background-color: #22c55e;
    transform: translateY(-1px);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background-color: #111111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ade80;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    background-color: #111111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.contact-details h3,
.qualification-criteria h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-details p {
    color: #a3a3a3;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #4ade80;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.contact-item p {
    color: #ffffff;
    margin-bottom: 0;
}

.qualification-criteria {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qualification-criteria ul {
    list-style: none;
}

.qualification-criteria li {
    color: #a3a3a3;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.qualification-criteria li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 600;
}

/* FAQ Styles */
.faq-section {
    padding: 4rem 2rem;
    background-color: #111111;
    margin: 2rem 0;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #000000;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #a3a3a3;
    line-height: 1.6;
}

/* Services Page Styles */
.services-overview {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background-color: #111111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #4ade80;
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #a3a3a3;
    line-height: 1.6;
}

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

.detailed-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail p {
    color: #a3a3a3;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail ul {
    list-style: none;
}

.service-detail li {
    color: #a3a3a3;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 600;
}

.process-section {
    padding: 4rem 2rem;
    background-color: #111111;
    margin: 2rem 0;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
}

.process-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.process-step {
    text-align: center;
    padding: 1.5rem;
}

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

.process-step h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: #a3a3a3;
    line-height: 1.6;
}

/* About Page Styles */
.mission-section {
    padding: 4rem 2rem;
    background-color: #111111;
    margin: 2rem 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.mission-text {
    font-size: 1.25rem;
    color: #a3a3a3;
    line-height: 1.6;
}

.story-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.story-content p {
    color: #a3a3a3;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #111111;
    margin: 2rem 0;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item h3 {
    color: #4ade80;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item p {
    color: #a3a3a3;
    line-height: 1.6;
}

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

.team-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.team-member {
    background-color: #111111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.member-contact {
    background-color: #000000;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-contact p {
    color: #a3a3a3;
    margin-bottom: 0.5rem;
}

.member-contact p:first-child {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ade80;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: #a3a3a3;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .feature-grid,
    .capability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metrics {
        grid-template-columns: 1fr;
    }
    
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 6rem;
    }
    
    .stat-symbol {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-links a:not(.cta-button) {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-symbol {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-container {
    background-color: #111111;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: #4ade80;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #a3a3a3;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 600;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1rem;
    }
}
