:root {
    --text-dark: #2A3B5C;
    --text-muted: #8E9BAE;
    --text-light: #B0BACC;
    --primary-gradient: linear-gradient(135deg, #FF6B4A 0%, #FF4136 100%);
    --bg-color: #FAFCFF;
    --blob-color: #fefefd;
}

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

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #EAEFF5;
    /* Outer background to frame the white container */
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fefefd;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    /* Gives it that framed web app look */
    min-height: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding: 40px 60px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    z-index: 10;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-icon .bar {
    width: 20px;
    height: 2px;
    background-color: #FF5A45;
    border-radius: 2px;
}

.menu-icon .middle-bar {
    width: 14px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dark);
}

.nav-right {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: var(--text-light);
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex: 1;
    align-items: center;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    padding-right: 40px;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 350px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(255, 90, 69, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 80px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 90, 69, 0.4);
}

.bottom-trust-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hero Image Range */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.image-blob-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: var(--blob-color);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(-15deg);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 40px;
    }

    .hero-description {
        margin: 0 auto 30px auto;
    }

    .image-blob-bg {
        width: 400px;
        height: 400px;
    }
}