@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-nav.light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-nav.light .nav-brand {
    color: #121212;
}

.top-nav.light .nav-cta-button {
    background-color: #121212;
    color: white;
    border: none;
}

.top-nav:not(.light) .nav-cta-button {
    background-color: white;
    color: #182848;
    border: none;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-logo {
    width: 32px;
    height: 32px;
}

.nav-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-cta-button img {
    width: 20px;
    height: 20px;
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 1;
    padding: 2rem 0;
}

.hero-text {
    flex: 1;
    color: white;
    padding: 2rem 0;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: white;
    color: #182848;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button img {
    width: 24px;
    height: 24px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-8px);
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.logo {
    width: 75px;
    height: 75px;
}

/* Features Section */
.features-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.feature-container {
    position: relative;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.feature-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 150%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.feature-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
    position: relative;
    padding: 2rem;
}

.feature-image {
    flex: 1.2;
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    z-index: -1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: translate(-5px, -5px);
}

.feature-text {
    flex: 1;
    color: white;
    padding-right: 2rem;
}

.feature-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a8c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-image img {
        max-width: 500px;
    }

    .feature-text h2 {
        font-size: 2.5rem;
    }

    .feature-description {
        font-size: 1.125rem;
    }

    .feature-content {
        gap: 4rem;
        padding: 4rem 2rem;
    }

    .feature-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 4rem 1rem;
        min-height: 100vh;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .feature-container {
        min-height: auto;
        padding: 6rem 1.5rem;
    }

    .feature-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .feature-text {
        padding-right: 0;
    }

    .feature-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-highlights {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .highlight-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 0 1rem;
    }

    .nav-brand span {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
    }

    .cta-button img {
        width: 20px;
        height: 20px;
    }

    .feature-container {
        padding: 4rem 1rem;
    }

    .feature-content {
        padding: 1rem;
    }

    .feature-text h2 {
        font-size: 2rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .highlight-item p {
        font-size: 1rem;
    }
}

/* Compete Section Styles */
.compete-section {
    background: #f8f9fa;
}

.compete-container {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    position: relative;
    overflow: hidden;
}

.compete-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 0%, rgba(100, 181, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(30, 136, 229, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.compete-container .feature-text h2 {
    background: linear-gradient(to right, #1565C0, #1E88E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compete-container .feature-description {
    color: #37474F;
}

.compete-container .highlight-item p {
    color: #37474F;
}

.compete-container .highlight-icon {
    background: rgba(33, 150, 243, 0.1);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

.compete-image img {
    box-shadow: 0 25px 50px -12px rgba(33, 150, 243, 0.25);
}

.compete-container .feature-image::after {
    border-color: rgba(33, 150, 243, 0.1);
}

/* Update media queries for compete section */
@media (max-width: 768px) {
    .compete-container {
        padding: 4rem 1.5rem;
    }
}

/* UI Split Section */
.ui-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.split-container {
    display: flex;
    min-height: 100vh;
}

.split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.split.light {
    background-color: #ffffff;
}

.split.dark {
    background-color: #121212;
}

.split-content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text {
    text-align: center;
}

.split.light .split-text h2 {
    color: #121212;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.split.light .split-text p {
    color: #333;
    font-size: 1.125rem;
    line-height: 1.7;
}

.split.dark .split-text h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.split.dark .split-text p {
    color: #e0e0e0;
    font-size: 1.125rem;
    line-height: 1.7;
}

.split-image {
    position: relative;
    width: 100%;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.split.light .split-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.split.dark .split-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.split-image img:hover {
    transform: translateY(-10px);
}

/* Split Section Media Queries */
@media (max-width: 1024px) {
    .split {
        padding: 3rem 1.5rem;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .split-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split {
        min-height: 100vh;
        padding: 4rem 1.5rem;
    }

    .split-content {
        gap: 2rem;
    }

    .split-image img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .split {
        padding: 3rem 1rem;
    }

    .split-text h2 {
        font-size: 1.75rem;
    }

    .split-text p {
        font-size: 0.875rem;
    }
}

/* Goals Section Styles */
.goals-section {
    background: #fdf2f2;
}

.goals-container {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    position: relative;
    overflow: hidden;
}

.goals-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 0%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(240, 62, 62, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.goals-container .feature-text h2 {
    background: linear-gradient(to right, #e03131, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.goals-container .feature-description {
    color: #495057;
}

.goals-container .highlight-item p {
    color: #495057;
}

.goals-container .highlight-icon {
    background: rgba(255, 107, 107, 0.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
}

.goals-container .feature-image img {
    box-shadow: 0 25px 50px -12px rgba(255, 107, 107, 0.25);
}

.goals-container .feature-image::after {
    border-color: rgba(255, 107, 107, 0.1);
}

/* Update media queries for goals section */
@media (max-width: 768px) {
    .goals-container {
        padding: 4rem 1.5rem;
    }
}

/* Download Section Styles */
.download-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.download-grid {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.download-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.download-image {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.download-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.download-image img:hover {
    transform: translateY(-10px);
}

.download-text {
    text-align: center;
    max-width: 600px;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #182848;
    margin-bottom: 1rem;
}

.download-text p {
    font-size: 1.125rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #182848;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-button img {
    width: 24px;
    height: 24px;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    background: #182848;
    padding: 2rem;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-button svg {
    width: 20px;
    height: 20px;
}

.social-button:hover {
    background: white;
    color: #182848;
    transform: translateY(-2px);
}

/* Update media queries for footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .social-buttons {
        justify-content: center;
    }
}
