:root {
    --primary-color: #0062ff;
    --primary-dark: #0051d3;
    --secondary-color: #19216c;
    --text-color: #212b36;
    --text-light: #637381;
    --background-light: #f7fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --accent-gradient: linear-gradient(135deg, #0062ff 0%, #60a5fa 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

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

.contact-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background-color 0.2s ease;
}

.contact-button:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 48px;
}

.hero-content {
    flex: 1;
}

.hero h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero h2 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero h2 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 6px;
    opacity: 0.3;
}

.hero p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.primary-button {
    background: var(--accent-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-button {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.secondary-button:hover {
    background-color: var(--background-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xNSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
    opacity: 0.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.features h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 1000px;
}

.feature-card {
    background-color: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 50%;
    background-color: rgba(0, 98, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::before {
    content: '';
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.ai-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 10.975V8a2 2 0 0 0-2-2h-6V4.688c.305-.274.5-.668.5-1.11a1.5 1.5 0 0 0-3 0c0 .442.195.836.5 1.11V6H5a2 2 0 0 0-2 2v2.998l-.072.005A.999.999 0 0 0 2 12v2a1 1 0 0 0 1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a1 1 0 0 0 1-1v-2a1 1 0 0 0-.927-.995l-.073-.005v-.025zM5 8h14v3H5V8zm12 12H7v-7h10v7z'/%3E%3C/svg%3E");
}

.security-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.integration-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33A7.95 7.95 0 0 1 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z'/%3E%3C/svg%3E");
}

.analytics-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z'/%3E%3C/svg%3E");
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
}

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

.about h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Contact Form Section */
.contact {
    padding: 80px 0;
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

input, textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    color: var(--text-color);
    transition: border-color 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 98, 255, 0.2);
}

textarea {
    resize: none;
}

.submit-button {
    grid-column: span 2;
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    padding-top: 64px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.footer-logo p {
    color: var(--text-light);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.link-column {
    display: flex;
    flex-direction: column;
}

.link-column h5 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.link-column a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.link-column a:hover {
    color: var(--primary-color);
}

.disclaimer {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.disclaimer p {
    color: var(--text-light);
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 16px;
}

.copyright {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .lead-form {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
    
    .submit-button {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    nav ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .form-container {
        padding: 24px;
    }
}