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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #101E1C;
    background-color: #ffffff;
}

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

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

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
}

.logo {
    text-decoration: none;
    color: #101E1C;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #101E1C;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #101E1C;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #E6FF03;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #101E1C;
    color: #E6FF03;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #0a1614;
    transform: translateY(-1px);
}

/* Button Styles */
.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #101E1C;
    color: #E6FF03;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    background: #0a1614;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 30, 28, 0.3);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #E4E2DD;
    color: #101E1C;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.secondary-button:hover {
    background: #d8d6d1;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.backed-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #666;
}

.tech-badge {
    padding: 6px 16px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #101E1C;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

/* Features Overview Section */
.features-overview {
    padding: 80px 0;
    background: #FAFAFA;
}

.features-overview h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 64px;
    color: #101E1C;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.feature-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #E6FF03;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

.feature-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    width: 20px;
    height: 20px;
    background: #E6FF03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #101E1C;
}

.process-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.process-step {
    padding: 8px 16px;
    background: #E4E2DD;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #101E1C;
}

.process-arrow {
    color: #E6FF03;
    font-weight: bold;
}

.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.platform-badge {
    padding: 6px 12px;
    background: #101E1C;
    color: #E6FF03;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.section-cta {
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: #101E1C;
    color: white;
}

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

.content-left h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: white;
}

.content-left p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #E6FF03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: #E6FF03;
    margin-left: 29px;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* Technology Showcase Section */
.technology-showcase {
    padding: 80px 0;
    background: #FAFAFA;
}

.technology-showcase h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #101E1C;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.tech-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tech-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #101E1C;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #101E1C;
    color: white;
    padding: 80px 0;
}

.footer-content {
    display: grid;
    gap: 48px;
}

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

.footer-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.footer-brand .logo-text {
    color: white;
    font-size: 28px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-column a:hover {
    color: #E6FF03;
}

.footer-contact {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-info strong {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    header .container {
        padding: 16px 24px;
    }
    
    nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .features-overview h2,
    .technology-showcase h2,
    .content-left h2 {
        font-size: 32px;
    }
    
    .feature-card,
    .tech-card {
        padding: 24px;
    }
}

/* Page-specific styles */

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #101E1C;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.content-main h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #101E1C;
}

.content-main h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #101E1C;
}

.content-main p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #FAFAFA;
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #101E1C;
    margin-bottom: 8px;
}

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

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-highlight,
.values-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-highlight h3,
.values-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #101E1C;
}

.team-member {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E4E2DD;
}

.team-member:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.member-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #101E1C;
    margin-bottom: 4px;
}

.member-title {
    color: #E6FF03;
    background: #101E1C;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.member-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.value-item {
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #101E1C;
    margin-bottom: 8px;
}

.value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.technology-focus {
    padding: 80px 0;
    background: #FAFAFA;
}

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

.focus-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.focus-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.focus-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #101E1C;
}

.focus-item p {
    color: #666;
    line-height: 1.5;
}

/* Features Page Styles */
.features-detailed {
    padding: 80px 0;
    background: white;
}

.feature-section {
    margin-bottom: 80px;
}

.feature-header {
    text-align: center;
    margin-bottom: 48px;
}

.feature-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #101E1C;
}

.feature-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.detail-card {
    background: #FAFAFA;
    padding: 32px;
    border-radius: 12px;
}

.detail-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.detail-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #101E1C;
}

.detail-card p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.detail-card li:before {
    content: "•";
    color: #E6FF03;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.integration-showcase {
    padding: 80px 0;
    background: #FAFAFA;
}

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

.integration-category {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.integration-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #101E1C;
}

.integration-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.integration-item {
    padding: 8px 16px;
    background: #E4E2DD;
    color: #101E1C;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Pricing Page Styles */
.pricing-overview {
    padding: 80px 0;
    background: white;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #101E1C;
}

.pricing-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border: 2px solid #E4E2DD;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #E6FF03;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E6FF03;
    color: #101E1C;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

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

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #101E1C;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #101E1C;
}

.period {
    font-size: 16px;
    color: #666;
}

.card-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-footer {
    text-align: center;
}

.card-note {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.pricing-details {
    padding: 80px 0;
    background: #FAFAFA;
}

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

.detail-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pricing-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
    background: #101E1C;
    color: white;
}

.comparison-row:nth-child(even) {
    background: #FAFAFA;
}

.comparison-item {
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item.highlight {
    background: #E6FF03;
    color: #101E1C;
    font-weight: 600;
}

.comparison-item.feature {
    font-weight: 600;
}

.pricing-faq {
    padding: 80px 0;
    background: #FAFAFA;
}

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

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

/* Product Page Styles */
.product-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    text-align: center;
}

.overview-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #101E1C;
}

.overview-text {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

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

.advantage-item {
    text-align: center;
    padding: 24px;
    background: #FAFAFA;
    border-radius: 12px;
}

.advantage-number {
    font-size: 48px;
    font-weight: 700;
    color: #101E1C;
    margin-bottom: 8px;
}

.advantage-label {
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

.how-it-works-detailed {
    padding: 80px 0;
    background: #FAFAFA;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

.step-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-tag {
    padding: 6px 12px;
    background: #101E1C;
    color: #E6FF03;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.competitive-advantages {
    padding: 80px 0;
    background: white;
}

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

.advantage-card {
    background: #FAFAFA;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

.advantage-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.advantage-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    padding: 8px 16px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.technology-deep-dive {
    padding: 80px 0;
    background: #FAFAFA;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
}

.tech-category {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tech-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #101E1C;
}

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

.tech-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #101E1C;
}

.tech-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.case-studies {
    padding: 80px 0;
    background: white;
}

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

.case-study {
    background: #FAFAFA;
    padding: 32px;
    border-radius: 12px;
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.case-study-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #101E1C;
}

.industry-tag {
    padding: 4px 12px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.case-study-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 32px;
    font-weight: 700;
    color: #101E1C;
    margin-bottom: 4px;
}

.result-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.case-study p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

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

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #101E1C;
}

.contact-info > p {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 16px;
}

.contact-benefits {
    margin-bottom: 48px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #101E1C;
}

.benefit-text p {
    color: #666;
    font-size: 14px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

.contact-item {
    margin-bottom: 16px;
}

.contact-item strong {
    color: #101E1C;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-top: 4px;
}

.contact-form-container {
    background: #FAFAFA;
    padding: 40px;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #101E1C;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #101E1C;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E4E2DD;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.field-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 4px;
}

.submit-button {
    width: 100%;
    justify-content: center;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    border: 2px solid #E6FF03;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #E6FF03;
    color: #101E1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 24px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

.success-message p {
    color: #666;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-page {
    padding: 80px 0;
    background: white;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #101E1C;
}

.last-updated {
    color: #666;
    margin-bottom: 48px;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #101E1C;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #101E1C;
}

.legal-section p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-section li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-details {
    background: #FAFAFA;
    padding: 24px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-details p {
    margin-bottom: 8px;
}

.contact-details strong {
    color: #101E1C;
}

/* Animation classes for scroll effects */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header scroll effect */
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
    .content-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .advantages-grid,
    .tech-stack,
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
