:root {
    --navy: #0a1929;
    --navy-light: #1a2f45;
    --green: #00d084;
    --green-dark: #00b872;
    --green-glow: rgba(0, 208, 132, 0.15);
    --white: #ffffff;
    --gray: #94a3b8;
    --gray-dark: #64748b;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--white);
    height: 100vh;
    overflow: hidden;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE - HERO */
.left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-image {
    width: 120px;
    height: auto;
    object-fit: contain;
    
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--navy-light);
    border: 1px solid rgba(0, 208, 132, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    
    color: var(--green);
    width: fit-content;
    margin-bottom: 2.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight {
    color: var(--green);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray);
    
    line-height: 1.6;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.email-input {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.email-input::placeholder {
    color: var(--gray-dark);
}

.cta-btn {
    background: var(--green);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--green-glow);
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
}

/* RIGHT SIDE - CONTACT FORM */
.right-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--navy-light);
}

.contact-container {
    width: 100%;
    max-width: 500px;
}

.contact-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

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

.submit-btn {
    background: var(--green);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--green-glow);
}

.contact-email {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-email a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    color: var(--green-dark);
}

/* RESPONSIVE - Mobile stacks vertically */
@media (max-width: 1024px) {
    .split-container {
        grid-template-columns: 1fr;
        overflow-y: auto;
        height: auto;
    }

    .left-side {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        min-height: 100vh;
    }

    .right-side {
        padding: 2rem;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .left-side,
    .right-side {
        padding: 1.5rem;
    }

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

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

    .contact-container h2 {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pulse-dot {
        animation: none;
    }
}
