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

/* Mobile-first responsive adjustments */
*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #10b981;
    --accent-color: #8b5cf6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background-dark: #0f172a;
    --background-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 16px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        padding: 12px 20px;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .cta-button {
        width: 100%;
        max-width: none;
        margin-top: 16px;
    }
    
    /* Overlay for mobile menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 60px;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Desktop: 2-column layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

/* Mobile: 1-column centered layout */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.hero-text .badge {
    background: rgba(79, 70, 229, 0.2);
    color: #e0e7ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

/* Desktop (default) */
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 20px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.primary-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-technologies {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-4px);
}

.visual-card-icon {
    font-size: 24px;
}

.visual-card-title {
    font-weight: 600;
    font-size: 14px;
}

/* Company Overview */
.company-overview {
    padding: 60px 0;
    background: var(--white);
}

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

.overview-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Domain Agents */
.domain-agents {
    padding: 60px 0;
    background: var(--white);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.agent-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.agent-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.agent-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.agent-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 14px;
}

.agent-features {
    list-style: none;
}

.agent-features li {
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}

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

/* Platform Agents */
.platform-agents {
    padding: 60px 0;
    background: var(--background-light);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.platform-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.platform-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.platform-desc {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.platform-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: var(--background-light);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

/* Integration Section */
.integration-section {
    padding: 60px 0;
    background: var(--white);
}

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

.integration-text {
    flex: 1;
    width: 100%;
    text-align: center;
}

.integration-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.integration-image {
    flex: 1;
    width: 100%;
}

.integration-diagram {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.diagram-node {
    background: var(--primary-color);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    font-size: 14px;
}

.diagram-arrow {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Custom Services */
.custom-services {
    padding: 60px 0;
    background: var(--background-light);
}

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

.services-text {
    flex: 1;
    width: 100%;
}

.services-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-icon {
    font-size: 28px;
}

.service-item h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 13px;
}

.service-btn {
    width: 100%;
}

.services-image {
    flex: 1;
    width: 100%;
}

.service-diagram {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.service-step {
    background: var(--primary-color);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
}

.service-arrow {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Technology Section */
.technology-section {
    padding: 60px 0;
    background: white;
}

.tech-header {
    text-align: center;
    margin-bottom: 40px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tech-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tech-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tech-desc {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Compliance Section */
.compliance-section {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.compliance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.compliance-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.compliance-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    margin: 8px;
}

.badge-icon {
    font-size: 24px;
}

.badge-info {
    text-align: left;
}

.badge-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.badge-desc {
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: white;
}

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

.contact-form {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--background-light);
    border-radius: 10px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.contact-value {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 40px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin-bottom: 12px;
}

.footer-logo .logo-text {
    font-size: 24px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 14px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.social-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .integration-content {
        flex-direction: column;
    }
    
    .services-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .agents-grid,
    .platform-grid,
    .tech-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .integration-badges {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .compliance-badge {
        display: block;
        margin: 12px 0;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .agents-grid,
    .platform-grid,
    .tech-grid,
    .footer-content,
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .integration-badges {
        gap: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
