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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.5rem;
    color: #111827;
}

h2 {
    font-size: 2rem;
    color: #111827;
}

h3 {
    font-size: 1.5rem;
    color: #374151;
}

p {
    margin-bottom: 16px;
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.5;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-product {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #2563EB;
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-1px);
}

.btn-product {
    background-color: #10B981;
    color: white;
    width: 100%;
}

.btn-product:hover {
    background-color: #059669;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-header {
    position: relative;
    z-index: 10;
    padding: 24px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-container {
    flex-shrink: 0;
}

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

.brand-name h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.btn-nav-contact {
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-nav-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-dashboard-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-overlay-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #1F2937;
}

.card-1 {
    top: 20px;
    right: 20px;
}

.card-2 {
    bottom: 80px;
    left: 20px;
}

.card-3 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.card-icon {
    font-size: 1.25rem;
}

.card-text {
    font-size: 0.875rem;
    white-space: nowrap;
}

.image-placeholder {
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-weight: 500;
    border: 2px dashed #9CA3AF;
}

/* Modern Image Styles */
.hero-dashboard-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.capabilities-dashboard {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-interface-image,
.product-analytics-image,
.product-risk-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Overview Section */
.overview {
    background-color: #FFFFFF;
}

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

.overview-card {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.overview-card .icon {
    width: 48px;
    height: 48px;
    background-color: #2563EB;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.overview-card .icon svg {
    width: 24px;
    height: 24px;
}

.overview-card h3 {
    color: #111827;
    margin-bottom: 16px;
}

.overview-card p {
    color: #6B7280;
    margin: 0;
}

/* Features Section */
.features {
    background-color: #F8FAFC;
}

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

.feature-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-item h3 {
    color: #111827;
    margin-bottom: 16px;
}

.feature-item p {
    color: #6B7280;
    margin: 0;
}

/* AI Capabilities Section */
.ai-capabilities {
    background: #FFFFFF;
}

.capabilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.capabilities-text h2 {
    color: #111827;
    margin-bottom: 24px;
}

.capabilities-text p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 32px;
}

.capabilities-list {
    list-style: none;
}

.capabilities-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #374151;
}

.list-icon {
    width: 24px;
    height: 24px;
    background-color: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.list-icon svg {
    width: 14px;
    height: 14px;
}

.capabilities-image .image-placeholder {
    height: 400px;
}

/* Industries Section */
.industries {
    background-color: #F8FAFC;
}

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

.industry-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.industry-icon svg {
    width: 32px;
    height: 32px;
}

.industry-card h3 {
    color: #111827;
    margin-bottom: 16px;
}

.industry-card p {
    color: #6B7280;
    margin: 0;
}

/* Products Section */
.products {
    background: #FFFFFF;
}

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

.product-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-header h3 {
    color: #111827;
    margin: 0;
}

.product-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-image {
    padding: 16px 24px;
}

.product-image .image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.product-content {
    padding: 0 24px 24px;
    flex-grow: 1;
}

.product-content p {
    color: #6B7280;
    margin-bottom: 24px;
}

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

.product-features li {
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.875rem;
}

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

.product-footer {
    padding: 0 24px 24px;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

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

.benefit-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.benefit-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.benefit-item h3 {
    color: #111827;
    margin-bottom: 16px;
}

.benefit-item p {
    color: #6B7280;
    margin: 0;
}

/* Contact Section */
.contact {
    background: #FFFFFF;
}

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

.contact-info h2 {
    color: #111827;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 48px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h3 {
    color: #111827;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.contact-text a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-text p {
    color: #6B7280;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.contact-form h3 {
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: #374151;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Footer */
.footer {
    background: #111827;
    color: #9CA3AF;
    padding: 64px 0 32px;
}

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

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

.footer-brand .logo-container {
    width: 48px;
    height: 48px;
}

.footer-brand .logo {
    width: 48px;
    height: 48px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.footer-brand p {
    color: #9CA3AF;
    margin: 0;
}

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

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #9CA3AF;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #374151;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-legal p {
    color: #9CA3AF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 64px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 64px 0;
        text-align: center;
    }

    .hero-nav {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

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

    .hero-dashboard-image {
        height: 300px;
    }

    .overlay-card {
        padding: 12px 16px;
    }

    .card-3 {
        right: 10px;
    }

    .capabilities-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .overview-grid,
    .features-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .brand-name h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-dashboard-image {
        height: 250px;
    }

    .overlay-card {
        padding: 8px 12px;
    }

    .card-text {
        font-size: 0.75rem;
    }

    .card-1 {
        top: 10px;
        right: 10px;
    }

    .card-2 {
        bottom: 60px;
        left: 10px;
    }

    .card-3 {
        top: 40%;
        right: 5px;
    }

    .capabilities-dashboard {
        height: 250px;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .overview-card,
    .feature-item,
    .industry-card,
    .benefit-item {
        padding: 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .image-placeholder {
        height: 200px;
    }

    .capabilities-image .image-placeholder {
        height: 250px;
    }
}