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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F8FBFF;
    color: #37474F;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4C9AFF;
}

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

.nav-link {
    text-decoration: none;
    color: #37474F;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4C9AFF;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #37474F;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, #F8FBFF 0%, #E5F0FF 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(76, 154, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(111, 207, 151, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: rgba(111, 207, 151, 0.1);
    color: #6FCF97;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #37474F;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    background: linear-gradient(135deg, #4C9AFF, #2A73B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #546E7A;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    text-decoration: none;
}

/* Goals Section */
.hero-goals {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 154, 255, 0.1);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.goal-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E5F0FF, #F8FBFF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.goal-icon {
    width: 30px;
    height: 30px;
    color: #4C9AFF;
}

.goal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #37474F;
    margin-bottom: 0.5rem;
}

.goal-description {
    font-size: 0.875rem;
    color: #546E7A;
    line-height: 1.5;
}


.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4C9AFF, #2A73B8);
    color: white;
    box-shadow: 0 10px 25px rgba(76, 154, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(76, 154, 255, 0.4);
}

.btn-secondary {
    background: white;
    color: #4C9AFF;
    border: 2px solid #E5F0FF;
}

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

.btn-icon {
    width: 20px;
    height: 20px;
}


/* AI Visualization */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visualization {
    position: relative;
    width: 400px;
    height: 400px;
}

.ai-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4C9AFF, #6FCF97);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(76, 154, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.ai-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(76, 154, 255, 0.2);
    border-radius: 50%;
}

.ai-ring-1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.ai-ring-2 {
    width: 280px;
    height: 280px;
    animation: rotate 30s linear infinite reverse;
}

.ai-ring-3 {
    width: 360px;
    height: 360px;
    animation: rotate 40s linear infinite;
}

.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #4C9AFF;
    border-radius: 50%;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: float 3s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 70%;
    left: 80%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation: float 3s ease-in-out infinite 1s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation: float 3s ease-in-out infinite 1.5s;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #37474F;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #546E7A;
}

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

.feature-card {
    background: #F8FBFF;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E5F0FF;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #4C9AFF;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E5F0FF, #F8FBFF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #4C9AFF;
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #37474F;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #546E7A;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: #F8FBFF;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(111, 207, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #6FCF97;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #37474F;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #546E7A;
}

/* Workflow Diagram */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.workflow-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4C9AFF, #2A73B8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.5rem;
}

.step-label {
    font-size: 0.875rem;
    color: #37474F;
    font-weight: 500;
}

.workflow-arrow {
    color: #4C9AFF;
    font-size: 1.5rem;
}


/* Compliance Section */
.compliance-section {
    padding: 5rem 2rem;
    background: #F8FBFF;
}

.compliance-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.compliance-intro {
    font-size: 1.125rem;
    color: #546E7A;
    margin-bottom: 2rem;
}

.compliance-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compliance-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #37474F;
    margin-bottom: 1rem;
}

.compliance-list {
    list-style: none;
    padding: 0;
}

.compliance-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #546E7A;
}

.compliance-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6FCF97;
    font-weight: bold;
}

.compliance-cta {
    margin-top: 2rem;
}

.compliance-cta .btn-primary {
    text-decoration: none;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.compliance-badge {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.compliance-badge:hover {
    transform: translateY(-5px);
}

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

.badge-text {
    font-weight: 600;
    color: #37474F;
    line-height: 1.4;
}


/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: #546E7A;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-benefit svg {
    width: 24px;
    height: 24px;
    color: #6FCF97;
    flex-shrink: 0;
}

.contact-form {
    background: #F8FBFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-primary-large {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4C9AFF, #2A73B8);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 154, 255, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(76, 154, 255, 0.4);
}

/* Footer */
.footer {
    background: #37474F;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.6;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, -10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem;
        border-bottom: 1px solid #E5F0FF;
    }
    
    /* Hero */
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .ai-visualization {
        width: 250px;
        height: 250px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-goals {
        padding: 2rem;
    }
    
    /* Security & Compliance */
    .compliance-content {
        grid-template-columns: 1fr;
    }
    
    .badge-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-badges {
        margin-top: 3rem;
    }
    
    /* Benefits */
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .workflow-diagram {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    /* General */
    .section-title {
        font-size: 2rem;
    }
}