* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --secondary-color: #00D4FF;
    --accent-color: #0099FF;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #001122 30%, #0066FF 60%, #00D4FF 80%, #000000 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 30px 40px;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    align-items: center;
    min-height: calc(100vh - 100px);
}

/* Hero Section */
.hero-section {
    color: var(--bg-white);
    padding-right: 40px;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.benefits-list {
    list-style: none;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 400;
}

.benefits-list li svg {
    color: #00D4FF;
    flex-shrink: 0;
}

/* Form Section */
.form-section {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    z-index: 5;
}

.form-container {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF, #0066FF, #00D4FF);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.submit-btn {
    padding: 16px 24px;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-out;
}

.success-message.hidden {
    display: none;
}

.success-message svg {
    color: var(--success-color);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

.success-message h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    margin-top: 0;
    color: var(--bg-white);
    opacity: 0.9;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

/* Features Section */
.features-section {
    padding: 100px 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    margin-top: 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    width: 100%;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features-subtitle {
    font-size: 1.25rem;
    color: var(--bg-white);
    opacity: 0.9;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF, #0066FF, #00D4FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

/* Employee Section */
.employee-section {
    padding: 100px 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    margin-top: 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    width: 100%;
}

.employee-container {
    max-width: 1400px;
    margin: 0 auto;
}

.employee-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.employee-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.employee-subtitle {
    font-size: 1.25rem;
    color: var(--bg-white);
    opacity: 0.9;
    font-weight: 300;
}

.employee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.employee-feature-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.employee-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF, #0066FF, #00D4FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.employee-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.employee-feature-card:hover::before {
    transform: scaleX(1);
}

.employee-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00D4FF, #0066FF);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.employee-feature-card:hover .employee-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
}

.employee-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.employee-feature-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.employee-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-item svg {
    color: #00D4FF;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .employee-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }

    .hero-section {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }

    .form-container {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .features-section,
    .employee-section {
        padding: 60px 20px;
    }

    .features-grid,
    .employee-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 20px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .form-container {
        padding: 32px 24px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .features-section,
    .employee-section {
        padding: 50px 20px;
    }

    .features-title,
    .employee-title {
        font-size: 2rem;
    }

    .features-subtitle,
    .employee-subtitle {
        font-size: 1.1rem;
    }

    .features-grid,
    .employee-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .employee-feature-card {
        padding: 24px;
    }

    .feature-card h3,
    .employee-feature-card h3 {
        font-size: 1.25rem;
    }

    .employee-benefits {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .benefit-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px;
    }

    .content-wrapper {
        padding: 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .features-title,
    .employee-title {
        font-size: 1.75rem;
    }

    .features-subtitle,
    .employee-subtitle {
        font-size: 1rem;
    }

    .feature-card,
    .employee-feature-card {
        padding: 20px;
    }

    .form-container {
        padding: 24px 20px;
    }
}

