* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2a2a72;
    --color-secondary: #009ffd;
    --color-accent: #ff007a;
    --color-bg: #f8f9fc;
    --color-white: #ffffff;
    --color-black: #000;
    --color-text: #2d3436;
    --color-text-secondary: #444849;
    --color-purple: #f3e8ff;
    --color-dark-gray: #2d3436;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 50px rgba(0, 0, 0, 0.1);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    /* Balanced readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    /* Premium tight heading style */
    font-weight: 800;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 25px;
    }
}

/* CGI-style Background Effects */
.mesh-gradients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.6;
    pointer-events: none;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    animation: rotateOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary), transparent);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary), transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent), transparent);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes rotateOrb {
    from {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    to {
        transform: translate(100px, 50px) rotate(360deg) scale(1.2);
    }
}

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    z-index: 1000;
    padding: 10px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    top: 10px;
    padding: 8px 30px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: calc(100% - 60px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 900;
    color: var(--color-black);
    letter-spacing: -0.04em;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

.download-btn-header {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(42, 42, 114, 0.3);
}

.btn-primary {
    background: linear-gradient(to bottom right, #161640, #003d61);
    color: var(--color-white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 159, 253, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 159, 253, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
}

.btn-secondary.disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: default;
}

.download-btn-header:hover {
    transform: scale(1.05);
}

/* Hero Section */
/* Hero Section Redesign - Premium 2-Column */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content-left {
    perspective: 1000px;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 5px;
    /* More extreme letter-spacing for premium minimalism */
    color: var(--color-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    color: var(--color-black);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary), #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    /* Cleaner search for light text */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn-secondary-glass {
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px 35px;
    border-radius: 100px;
    color: var(--color-text);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
    opacity: 0.7;
    cursor: not-allowed;
}

.hero-visual-right {
    position: relative;
}

.hero-mockup-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.hero-phone-3d {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.phone-screen-3d {
    border-radius: 40px;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); */
}

.hero-img-3d {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.phone-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.data-badge {
    position: absolute;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: badgeFloat 6s ease-in-out infinite;
}

.data-badge i {
    font-size: 24px;
    color: var(--color-primary);
}

.data-badge div {
    display: flex;
    flex-direction: column;
}

.data-badge span {
    font-size: 11px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-badge strong {
    font-size: 16px;
    color: var(--color-black);
}

.badge-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: -2s;
}

.badge-3 {
    top: 50%;
    right: -25%;
    animation-delay: -4s;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-glass-card {
        padding: 40px 20px;
    }

    .badge-1 {
        left: 0;
        top: 0;
    }

    .badge-2 {
        right: 0;
        bottom: 0;
    }

    .badge-3 {
        display: none;
    }
}



/* Info Section */
/* Info/Branding Section - Premium Redesign */
.info-section {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.info-bg-orb {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 42, 114, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.branding-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.branding-title {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-black);
    letter-spacing: -0.04em;
}

.branding-title span {
    color: var(--color-primary);
    position: relative;
}

.branding-description {
    font-size: 19px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.branding-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .info-section {
        padding: 100px 0;
    }

    .branding-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .branding-title {
        font-size: 42px;
    }

    .branding-stats {
        flex-wrap: wrap;
    }
}

/* Features Section */
.features-section {
    padding: 60px 0 100px;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    border-radius: 30px;
    padding: 30px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-purple {
    background: var(--color-purple);
}

.card-image {
    background: #f9f9f9;
}

.card-dark {
    background: var(--color-dark-gray);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.card-badge {
    background: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
}

.card-icon {
    font-size: 10px;
    color: var(--color-black);
}

.card-dark .card-icon {
    color: var(--color-white);
}

.card-image-box {
    flex: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.card-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s ease;
}

.feature-card:hover .card-mockup-img {
    transform: translateY(-10px) scale(1.05);
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-black);
    line-height: 1.2;
}

.step-item {
    margin-bottom: 50px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.step-icon {
    font-size: 8px;
    color: var(--color-black);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-black);
}

.step-description {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.phone-mockup-large {
    text-align: center;
    position: relative;
}

.phone-caption {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.large-phone {
    width: 280px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.large-phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-download-float {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
}

.review-card {
    background: var(--color-bg);
    border-radius: 20px;
    padding: 30px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    font-size: 48px;
    color: var(--color-text-secondary);
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    font-size: 14px;
    color: #fbbf24;
}

.review-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Download Section */
/* Premium Download Section */
.download-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.download-aura {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 42, 114, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.download-card {
    background: #0a0a1a;
    border-radius: 40px;
    padding: 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.download-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.download-content {
    position: relative;
    z-index: 5;
}

.download-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
    color: #ffffff;
}

.download-title span {
    background: linear-gradient(to right, #ffffff, #a0a0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-btn:not(.disabled-btn):hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.store-btn i {
    font-size: 30px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-small {
    font-size: 12px;
    opacity: 0.6;
}

.btn-large {
    font-size: 18px;
    font-weight: 700;
}

.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    animation: pulseOrb 8s infinite alternate ease-in-out;
}

.download-mockup {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-ground-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotateX(70deg);
    width: 250px;
    height: 40px;
    background: rgba(148, 148, 148, 0.6);
    filter: blur(25px);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-card:hover .download-mockup {
    transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.05);
}

.download-card:hover .mockup-ground-shadow {
    width: 300px;
    opacity: 0.8;
}

@keyframes pulseOrb {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@media (max-width: 992px) {
    .download-card {
        padding: 60px 40px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .download-description {
        margin-left: auto;
        margin-right: auto;
    }

    .download-buttons {
        justify-content: center;
    }

    .download-mockup {
        transform: none;
        max-width: 280px;
    }
}

/* Footer - Premium 4-Column Layout */
.footer {
    background: #ffffff;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1;
}

.footer-logo span {
    display: flex;
    align-items: center;
    transform: translateY(-8px);
    /* Lifts the text slightly for optical centering */
}

.footer-brand-logo {
    width: 35px;
    height: auto;
}

.footer-desc {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-nav-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-vertical a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-nav-vertical a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
}

.footer-contact li i {
    color: var(--color-primary);
    width: 20px;
    text-align: center;
}

.footer-contact li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(42, 42, 114, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 42, 114, 0.15);
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.footer-bottom a {
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: flex-start;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* FAQ Section - Premium Redesign */
.faq-section {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-bg-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(42, 42, 114, 0.02) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.faq-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.faq-header .section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.faq-accordion-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(42, 42, 114, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
    border-color: var(--color-primary);
    background: #fafbff;
}

.faq-item.active .faq-question h3 {
    color: var(--color-primary);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.faq-footer {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.faq-footer p {
    font-size: 17px;
    color: var(--color-text-secondary);
}

.faq-footer a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(42, 42, 114, 0.1);
    transition: all 0.3s ease;
}

.faq-footer a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 100px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 17px;
    }

    .faq-item {
        padding: 25px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-grid,
    .download-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .download-title {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================================
   App Showcase & Gallery Styles
   ========================================= */

/* Showcase Sections General */
.showcase-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.showcase-content {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Feature Rows (Alternating Layouts) */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .row.reverse-mobile {
        flex-direction: column-reverse;
    }

    .col-text {
        padding: 0;
    }
}

.col-text,
.col-image {
    flex: 1;
}

.col-text {
    padding: 20px;
}

/* Feature Images */
.feature-img-mobile {
    max-width: 320px;
    width: 100%;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.feature-img-mobile:hover {
    transform: translateY(-10px);
}

.feature-img-large {
    max-width: 500px;
    width: 100%;
    border-radius: 24px;
    display: block;
    margin: 0 auto;
}

/* Dark Mode Section Specifics */
.dark-mode-section {
    background: radial-gradient(circle at 50% 50%, rgb(11, 29, 86) 0%, rgb(15, 8, 73) 20%, #02021d 60%, #030324 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}


.dark-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decor-item {
    position: absolute;
    color: rgb(255, 255, 255);
    font-size: clamp(30px, 5vw, 60px);
    animation: floatingDecor 12s infinite alternate ease-in-out;
}

.item-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.item-2 {
    bottom: 20%;
    right: 8%;
    animation-delay: -3s;
}

.item-3 {
    top: 40%;
    left: 20%;
    animation-delay: -6s;
    opacity: 0.08;
}

.item-4 {
    bottom: 35%;
    right: 25%;
    animation-delay: -9s;
    opacity: 0.1;
}

.item-5 {
    top: 60%;
    left: 10%;
    animation-delay: -2s;
    opacity: 0.05;
}

.item-6 {
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    opacity: 0.07;
}

@keyframes floatingDecor {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 40px) rotate(15deg);
    }
}

.dark-mode-section .container-fluid {
    position: relative;
    z-index: 2;
}

.dark-mode-section .section-title {
    color: #ffffff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.dark-mode-section .section-title span {
    background: linear-gradient(135deg, #2a2a72 0%, #fafafa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-mode-section .section-description {
    color: #bbbbbb;
    font-size: 1.25rem;
    max-width: 500px;
    margin: 0 auto;
}

.showcase-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hero Screen Image Fix */
.app-screen-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Categories & Expense Section Styling */
.categories-section {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.expense-section {
    background-color: #ffffff;
}

.report-section {
    background-color: #f5f5f7;
}

/* Gallery Section - Tiered Showcase Redesign */
.gallery-section {
    padding: 60px 0 10px;
    background-color: #ffffff;
    color: var(--color-text);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.gallery-decorations {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.gallery-blob {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 900px;
    height: 700px;
    background: radial-gradient(circle at center, #ffa600, #ff5e62, #ff9966, #ff00ea);
    filter: blur(140px);
    opacity: 0.25;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobMorph 15s infinite alternate ease-in-out;
}

@keyframes blobMorph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
        transform: translate(-50%, -50%) rotate(15deg) scale(1.15);
    }
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    font-size: 24px;
    animation: floatIcon 5s infinite ease-in-out;
}

.fi-1 {
    top: 15%;
    left: 10%;
    color: #e1306c;
    animation-delay: 0s;
}

.fi-2 {
    top: 35%;
    left: 5%;
    color: #4a154b;
    animation-delay: 1s;
}

.fi-3 {
    top: 10%;
    right: 10%;
    color: #4285f4;
    animation-delay: 0.5s;
}

.fi-4 {
    top: 40%;
    right: 5%;
    color: #bd081c;
    animation-delay: 1.5s;
}

.fi-5 {
    bottom: 20%;
    left: 10%;
    color: #00bcd4;
    animation-delay: 2s;
}

.fi-6 {
    bottom: 15%;
    right: 10%;
    color: #007ee5;
    animation-delay: 0.8s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.gallery-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.gallery-header .section-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.gallery-scroll-container {
    overflow-x: auto;
    padding: 60px 0 100px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    position: relative;
    z-index: 10;
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: inline-flex;
    gap: 40px;
    padding: 0 10vw;
}

.mockup-wrapper {
    width: 300px;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.mockup-frame {
    background: transparent;
    padding: 0px;
    border-radius: 40px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.mockup-frame img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

.mockup-wrapper:hover {
    transform: translateY(-15px) scale(1.05);
}



@media (max-width: 992px) {
    .gallery-blob {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 70px 0 10px;
    }

    .gallery-track {
        gap: 25px;
    }

    .mockup-wrapper {
        width: 240px;
    }

    .float-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .fi-1,
    .fi-3,
    .fi-5 {
        left: 5%;
        right: auto;
    }

    .fi-2,
    .fi-4,
    .fi-6 {
        right: 5%;
        left: auto;
    }
}



/* Why Expensily Section */
.why-expensily-section {
    padding: 120px 0;
    background: #ffffff;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-top: -30px;
    margin-bottom: 80px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.benefit-card {
    background: #fdfdff;
    padding: 40px;
    border-radius: 30px;
    text-align: left;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--color-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 24px;
    margin-bottom: 25px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Security Section - Premium Redesign */
.security-section {
    padding: 140px 0;
    background: #050510;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.security-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(42, 42, 114, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.security-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Security Visual - Shield Animation */
.security-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.shield-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-main {
    font-size: 120px;
    color: #fff;
    filter: drop-shadow(0 0 30px rgba(42, 42, 114, 0.5));
    animation: shieldPulse 4s infinite alternate ease-in-out;
}

.shield-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
}

.orbit {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotateOrbit 20s infinite linear;
}

.orbit i {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.o1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.o2 {
    bottom: 20%;
    left: -10px;
}

.o3 {
    bottom: 20%;
    right: -10px;
}

@keyframes shieldPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Security Content */
.security-content {
    position: relative;
    z-index: 5;
}

.security-content .section-title {
    color: #ffffff;
    font-size: 48px;
    margin: 20px 0;
}

.security-content .section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.security-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    align-items: center;
    transition: all 0.4s ease;
}

.s-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--color-primary);
}

.s-card i {
    font-size: 30px;
    color: #fff;
}

.s-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ffffff;
}

.s-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    grid-column: 2;
}

@media (max-width: 992px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-visual {
        order: -1;
    }

    .s-card {
        text-align: left;
    }
}

/* Feature Chips */
.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.feature-chip {
    background: rgba(42, 42, 114, 0.05);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(42, 42, 114, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.feature-chip i {
    font-size: 16px;
    color: var(--color-primary);
}

.feature-chip:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 42, 114, 0.15);
}

.feature-chip:hover i {
    color: #ffffff;
}

/* How it Works Redesign - Vertical Journey */
.how-it-works-section {
    padding: 120px 0;
    background: #fdfdff;
    position: relative;
    overflow: hidden;
}

.journey-container {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
}

/* Central Timeline Line */
.journey-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-primary) 10%, var(--color-primary) 90%, transparent);
    transform: translateX(-50%);
    opacity: 0.2;
}

.journey-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.journey-step:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-content {
    width: 45%;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.journey-step:nth-child(odd) .journey-content {
    text-align: right;
}

.journey-step:nth-child(even) .journey-content {
    text-align: left;
}

.journey-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 15px 35px rgba(42, 42, 114, 0.2);
    border: 6px solid #fdfdff;
    z-index: 20;
}

.step-number-pill {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.journey-step .step-number-pill {
    position: absolute;
    top: -15px;
    margin-bottom: 0;
}

.journey-step:nth-child(odd) .step-number-pill {
    right: 20px;
}

.journey-step:nth-child(even) .step-number-pill {
    left: 20px;
}

.journey-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-black);
}

.journey-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Animations for Journey */
.journey-step .journey-content {
    opacity: 0;
}

.journey-step:nth-child(odd) .journey-content {
    transform: translateX(-50px);
}

.journey-step:nth-child(even) .journey-content {
    transform: translateX(50px);
}

.journey-step.revealed .journey-content {
    opacity: 1;
    transform: translateX(0);
}

.journey-step .journey-icon-wrapper {
    opacity: 0;
    transform: translate(-50%, 20px) scale(0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-step.revealed .journey-icon-wrapper {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

@media (max-width: 768px) {
    .journey-container::before {
        left: 30px;
    }

    .journey-step,
    .journey-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 80px;
    }

    .journey-content {
        width: 100%;
        text-align: left !important;
    }

    .journey-icon-wrapper {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .journey-step:nth-child(odd) .step-number-pill,
    .journey-step:nth-child(even) .step-number-pill {
        left: 20px;
        right: auto;
    }
}



/* Initial state for staggered elements to prevent pop-in */
.benefit-card,
.review-card,
.feature-card,
.benefit-card:not(.revealed),
.review-card:not(.revealed),
.feature-card:not(.revealed),
.faq-item:not(.revealed),
.journey-step:not(.revealed),
.feature-chip:not(.revealed),
.mockup-wrapper:not(.revealed),
.float-icon:not(.revealed),
.branding-left:not(.revealed),
.branding-right:not(.revealed),
.stat-item:not(.revealed),
.s-card:not(.revealed) {
    opacity: 0;
}

/* Staggered Reveals */
.benefit-card.revealed,
.review-card.revealed,
.feature-card.revealed,
.faq-item.revealed,
.journey-step.revealed,
.feature-chip.revealed,
.mockup-wrapper.revealed,
.float-icon.revealed,
.branding-left.revealed,
.branding-right.revealed,
.stat-item.revealed,
.s-card.revealed {
    animation: slideUpFade 0.8s forwards;
}

/* Staggered Reveals - Robust Visibility */
.revealed .benefit-card,
.revealed .review-card,
.revealed .feature-card,
.revealed .faq-item,
.revealed .journey-step,
.revealed .feature-chip,
.revealed .mockup-wrapper,
.revealed .float-icon,
.revealed .branding-left,
.revealed .branding-right,
.revealed .stat-item,
.revealed .s-card,
.benefit-card.revealed,
.faq-item.revealed,
.s-card.revealed {
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.center-text {
    text-align: center;
}

/* Reveal on Scroll Animations - Floating from Bottom */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .header {
        width: calc(100% - 30px);
        padding: 10px 15px;
        top: 10px;
    }

    .download-btn-header {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: calc(100% - 30px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        border-radius: 25px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .gallery-track img {
        /* height: 350px; */
        border-width: 2px;
    }

    .feature-img-mobile {
        max-width: 280px;
    }
}