/* Color Variables */
:root {
    --dark-blue: #0F3460;
    --darker-blue: #16213E;
    --darkest-blue: #1A1A2E;
    --accent: #E94560;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #8B8B9C;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    --gradient: linear-gradient(135deg, var(--accent), #FF6B6B);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darkest-blue);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

span {
    color: var(--accent);
}

/* Header Styles */
header {
    background-color: rgba(26, 26, 46, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 0.8rem;
}

.logo span {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-light);
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:not(.cta-btn):hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--accent);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #ff2d50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:nth-child(3) {
    top: 18px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
    padding-right: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.primary-btn {
    background: var(--gradient);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.5);
}

.secondary-btn {
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-light);
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-3px);
}

/* Showcase Section */
.showcase {
    background-color: var(--darker-blue);
    padding: 6rem 2rem;
}

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

.showcase-item {
    background-color: var(--darkest-blue);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.showcase-icon {
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background-color: var(--darkest-blue);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: var(--darker-blue);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature h3 {
    color: var(--accent);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background-color: var(--darker-blue);
}

.steps {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.step-number {
    background: var(--gradient);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.action-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--darkest-blue);
    border-radius: 15px;
}

.action-center h3 {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--darkest-blue);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand span {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .footer-brand {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--darkest-blue);
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        text-align: center;
    }
    
    #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }
    
    #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -6px);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .showcase-item, 
    .feature {
        padding: 1.5rem;
    }
}
