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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================
   NAVIGATION STYLES - MODERN FLOATING DESIGN
   =================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.nav-logo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.nav-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.nav-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
    transition: width 0.3s ease;
}

.nav-brand:hover .nav-title::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.nav-link:active {
    transform: translateY(0);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navigation scroll effect */
.navbar.scrolled {
    top: 12px;
    left: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.9) 100%);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 6px 20px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .nav-container {
    padding: 12px 28px;
}

/* Modern Mobile Menu - Clean & Simple */
.nav-links.mobile-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: #000000;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: auto !important;
    padding: 2rem;
}

.nav-links.mobile-open.show {
    opacity: 1;
    visibility: visible;
}

.nav-links.mobile-open .nav-link {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 0;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    background: none;
    width: auto;
    min-width: auto;
}

.nav-links.mobile-open .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Touch feedback for mobile menu links */
.nav-links.mobile-open .nav-link:active::after {
    width: 100%;
}

.nav-links.mobile-open .nav-link:active {
    color: #ffffff;
    transform: scale(0.98);
}

.nav-links.mobile-open .nav-link {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-links.mobile-open.show .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.nav-links.mobile-open .nav-link.active {
    color: #ffffff;
    font-weight: 400;
}

.nav-links.mobile-open .nav-link.active::after {
    width: 100%;
}

.nav-links.mobile-open .nav-link:nth-child(1) { transition-delay: 0.1s; }
.nav-links.mobile-open .nav-link:nth-child(2) { transition-delay: 0.2s; }
.nav-links.mobile-open .nav-link:nth-child(3) { transition-delay: 0.3s; }
.nav-links.mobile-open .nav-link:nth-child(4) { transition-delay: 0.4s; }

/* Modern Hamburger Menu Button - Touch Optimized */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 16px;
    background: none;
    border: none;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Touch feedback instead of hover */
.nav-toggle:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.95);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
    margin: 2px 0;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Content */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    object-position: center center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    filter: var(--hero-blur, blur(0px));
    transition: filter 0.7s cubic-bezier(0.4,0,0.2,1);
}

.hero-image.blurred {
    --hero-blur: blur(18px);
    filter: var(--hero-blur) brightness(0.8) contrast(1.1);
}

/* Ensure hero image is responsive */
@media screen and (max-width: 768px) {
    .hero-image {
        object-position: center center;
    }
}

@media screen and (max-aspect-ratio: 1/1) {
    /* For very tall screens (like mobile portrait) */
    .hero-image {
        object-position: center top;
    }
}

@media screen and (min-aspect-ratio: 3/1) {
    /* For very wide screens */
    .hero-image {
        object-position: center center;
    }
}

.hero-title-container {
    position: absolute;
    top: 50%;
    left: 6vw;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    max-width: 40vw;
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 #222;
}

@media (max-width: 900px) {
    .hero-title-container {
        left: 4vw;
        max-width: 80vw;
    }
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.member-role {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* ===================
   SECTION STYLES - CONSISTENT WIDTH
   =================== */

.about-section, .feature-section, .benefits-section, .how-it-works-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.about-grid, .feature-grid, .benefits-grid, .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.about-card, .feature-card, .benefit-card, .step-card {
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.about-card:hover, .feature-card:hover, .benefit-card:hover, .step-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.about-title, .feature-title, .benefit-title, .step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.about-content {
    margin: 0;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-list, .feature-list, .benefit-list, .step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li, .feature-list li, .benefit-list li, .step-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 0;
}

.about-list li:before, .feature-list li:before, .benefit-list li:before, .step-list li:before {
    content: "•";
    color: #ffffff;
    position: absolute;
    left: 8px;
    top: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    z-index: 1;
}

/* Responsive Design */

/* LARGE SCREENS (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MEDIUM SCREENS (992px - 1199px) */
@media (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-section, .feature-section, .benefits-section, .how-it-works-section {
        padding: 70px 30px;
        max-width: 900px;
        width: 100%;
    }
}

/* TABLET SCREENS (768px - 991px) */
@media (max-width: 991px) {
    .navbar {
        top: 16px;
        left: 16px;
        right: 16px;
        border-radius: 14px;
    }
    
    .navbar.scrolled {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 10px;
    }
    
    .nav-container {
        padding: 14px 24px;
    }
    
    .navbar.scrolled .nav-container {
        padding: 10px 20px;
    }
    
    .nav-brand {
        gap: 12px;
    }
    
    .nav-logo {
        height: 38px;
    }
    
    .nav-title {
        font-size: 1.5rem;
        letter-spacing: 0.8px;
    }
    
    .nav-links {
        gap: 6px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 16px;
        border-radius: 8px;
    }
    
    .about-card, .feature-card, .benefit-card, .step-card {
        padding: 30px 25px;
        width: 100%;
    }
    
    .hero-title-container {
        max-width: 60vw;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
}

/* MOBILE SCREENS (576px - 767px) */
@media (max-width: 767px) {
    .navbar {
        top: 12px;
        left: 12px;
        right: 12px;
        border-radius: 12px;
    }
    
    .navbar.scrolled {
        top: 8px;
        left: 8px;
        right: 8px;
        border-radius: 8px;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .navbar.scrolled .nav-container {
        padding: 8px 16px;
    }
    
    .nav-brand {
        gap: 10px;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .nav-title {
        font-size: 1.3rem;
        letter-spacing: 0.6px;
    }
    
        .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
    
    .hero-title-container {
        left: 5vw;
        max-width: 90vw;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .about-section, .feature-section, .benefits-section, .how-it-works-section {
        padding: 50px 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .about-grid, .feature-grid, .benefits-grid, .steps-grid {
        gap: 20px;
        margin-top: 30px;
        width: 100%;
    }
    
    .about-card, .feature-card, .benefit-card, .step-card {
        padding: 25px 20px;
        width: 100%;
    }
    
    .about-title, .feature-title, .benefit-title, .step-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .about-list li, .feature-list li, .benefit-list li, .step-list li {
        padding-left: 22px;
        font-size: 0.95rem;
    }
    
    .about-list li:before, .feature-list li:before, .benefit-list li:before, .step-list li:before {
        left: 6px;
        font-size: 1.1rem;
    }
}

/* SMALL MOBILE SCREENS (575px and below) */
@media (max-width: 575px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 10px;
    }
    
    .navbar.scrolled {
        top: 6px;
        left: 6px;
        right: 6px;
        border-radius: 6px;
    }
    
    .nav-container {
        padding: 10px 16px;
    }
    
    .navbar.scrolled .nav-container {
        padding: 6px 12px;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    .nav-logo {
        height: 32px;
    }
    
    .nav-title {
        font-size: 1.2rem;
        letter-spacing: 0.4px;
    }
    
        .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-section, .feature-section, .benefits-section, .how-it-works-section {
        padding: 40px 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .about-card, .feature-card, .benefit-card, .step-card {
        padding: 20px 15px;
        width: 100%;
    }
    
    .about-title, .feature-title, .benefit-title, .step-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .about-list li, .feature-list li, .benefit-list li, .step-list li {
        padding-left: 20px;
        font-size: 0.9rem;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    
    .about-list li:before, .feature-list li:before, .benefit-list li:before, .step-list li:before {
        left: 4px;
        top: 6px;
        font-size: 1rem;
    }
}

/* EXTRA SMALL SCREENS (400px and below) */
@media (max-width: 400px) {
    .navbar {
        top: 8px;
        left: 8px;
        right: 8px;
        border-radius: 8px;
    }
    
    .navbar.scrolled {
        top: 4px;
        left: 4px;
        right: 4px;
        border-radius: 4px;
    }
    
    .nav-container {
        padding: 8px 12px;
    }
    
    .navbar.scrolled .nav-container {
        padding: 4px 8px;
    }
    
    .nav-logo {
        height: 28px;
    }
    
    .nav-title {
        font-size: 1.1rem;
        letter-spacing: 0.2px;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 5px 8px;
        letter-spacing: 0.1px;
        border-radius: 4px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .about-title, .feature-title, .benefit-title, .step-title {
        font-size: 1.1rem;
    }
    
    .about-content p {
        font-size: 0.85rem;
    }
    
    .about-list li, .feature-list li, .benefit-list li, .step-list li {
        font-size: 0.85rem;
        padding-left: 18px;
    }
    
    .about-list li:before, .feature-list li:before, .benefit-list li:before, .step-list li:before {
        left: 2px;
        font-size: 0.9rem;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 100;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeGlow 3s ease-in-out infinite;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes fadeGlow {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* Hide scroll indicator when scrolled */
.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Mobile responsiveness for scroll indicator */
@media (max-width: 767px) {
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .scroll-arrow {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
} 

/* ===================
   FEATURE SECTION - REMOVED (NOW UNIFIED ABOVE)
   =================== */

/* ===================
   BENEFITS SECTION - REMOVED (NOW UNIFIED ABOVE)  
   =================== */

/* ===================
   HOW IT WORKS SECTION - REMOVED (NOW UNIFIED ABOVE)
   =================== */

.navbar.menu-open {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    background: #000000 !important;
    overflow: visible !important;
    z-index: 1000 !important;
    padding-bottom: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar.menu-open .nav-brand {
    opacity: 0;
    pointer-events: none;
}

.navbar.menu-open .nav-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.1);
}