/* ===== Variables ===== */
:root {
    --dark: #242424;
    --light: #F2F2F2;
    --grey: #838383;
    --medium-grey: #C2C2C2;
    --leaf-gradient: linear-gradient(135deg, #8BC34A 0%, #33C4A0 50%, #81D4FA 100%);
    --grey-gradient: linear-gradient(135deg, #CCCCCC 0%, #E8E8E8 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2 {
    font-family: 'DM Serif Display', serif;
}

/* ===== Navigation ===== */
.glass-nav {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav .container {
    display: flex;
    justify-content: center;
}

.glass-nav .container > .row {
    width: 100%;
    justify-content: center;
}

.glass-nav .container > .row > .col-lg-8 {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(139, 195, 74, 0.3);
    box-shadow: 0 8px 32px rgba(139, 195, 74, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav .container > .row > .col-lg-8:hover {
    box-shadow: 0 12px 40px rgba(139, 195, 74, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(139, 195, 74, 0.5);
    background: rgba(255, 255, 255, 0.85);
}

.navbar-brand {
    font-weight: 700;
}

.navbar-logo {
    height: 25px;
    width: auto;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--leaf-gradient);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    background: var(--leaf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    background: var(--leaf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-demo {
    background: rgba(250, 250, 250, 0.3);
    color: white;
    border: 2px solid white;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50px;
    transform: translate(-50%, -50%);
    clip-path: polygon(
        0% 0%, 0% 0%, 0% 0%, 0% 0%
    );
    transition: none;
}

.btn-demo:hover {
    color: white;
    transform: translateY(-2px);
    border-color: none;
}

.btn-demo:hover::before {
    animation: revealBorderPath 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.btn-demo:active {
    transform: translateY(0);
}

/* Button for Navigation with Gradient Background */
.btn-demo-nav {
    background: var(--leaf-gradient);
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.btn-demo-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50px;
    transform: translate(-50%, -50%);
    clip-path: polygon(
        0% 0%, 0% 0%, 0% 0%, 0% 0%
    );
    transition: none;
}

.btn-demo-nav:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
}

.btn-demo-nav:hover::before {
    animation: revealBorderPath 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

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

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(230deg, #8BC34A 0%, #33C4A0 50%, #81D4FA 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg/shelfee-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
    transform: translateY(var(--bg-y, 0));
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.mockup-container-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 9rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: white;
    line-height: 0.95;
    letter-spacing: -0.03em;
    position: relative;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: clamp(80px, 15vw, 150px);
    height: clamp(3px, 0.5vw, 5px);
    background: white;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: clamp(0.95rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    margin-top: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

/* ===== NEW Hero Section with Gradient & Light Beams ===== */
.hero-section-new {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(230deg, #8BC34A 0%, #33C4A0 50%, #81D4FA 100%);
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg/shelfee-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}

.light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.beam {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 600px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0) 100%);
    transform-origin: center center;
    filter: blur(8px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    animation: sweepBeam 8s ease-in-out infinite;
}

.beam-1 {
    display: block;
}

.beam-2,
.beam-3 {
    display: none;
}

.hero-content-centered {
    position: relative;
    z-index: 3;
}

.hero-title-new {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-description-new {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mockups-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.mockup-float {
    position: absolute;
    width: 200px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    opacity: 0.4;
    filter: blur(1px);
}

.mockup-float img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-float-1 {
    top: 15%;
    left: 8%;
    transform: rotate(-15deg);
    animation: floatMockup1 15s ease-in-out infinite;
}

.mockup-float-2 {
    bottom: 15%;
    right: 8%;
    transform: rotate(12deg);
    animation: floatMockup2 18s ease-in-out infinite;
}

/* Custom Cursor */
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(226, 226, 226, 0.1);
    backdrop-filter: blur(5px);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, background 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(255, 255, 255, 0.8);
}

a, button, .btn {
    cursor: none;
}

/* ===== Mockups ===== */
.mockup-container {
    position: relative;
    height: 600px;
    margin-top: 20%;
}

.mockup {
    position: absolute;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12),
                0 10px 30px rgba(139, 195, 74, 0.1);
    animation: bounceIn 1.2s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    height: auto;
    width: 250px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(139, 195, 74, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

.mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 35px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-1 {
    right: 280px;
    top: 80px;
    z-index: 2;
    animation: mockupSlideOut1 2.5s ease-in-out 0.5s both, floatAnimation 7s ease-in-out 3.5s infinite;
}

.mockup-2 {
    right: 30px;
    top: 150px;
    z-index: 1;
    animation: mockupSlideOut2 2.5s ease-in-out 0.8s both, floatAnimation2 7s ease-in-out 4s infinite;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 45%;
    margin: auto;
    text-align: center;
}

.scroll-indicator a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--dark);
    transform: translateY(-3px);
}

.bounce-icon {
    animation: bounceDown 2s ease-in-out infinite;
    width: 24px;
    height: 24px;
}

/* ===== Features Section ===== */
.features-section {
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.3), transparent);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    background: var(--leaf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.feature-card-green {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.feature-card-orange {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.feature-card-blue {
    background: linear-gradient(135deg, #E1F5FE 0%, #B3E5FC 100%);
}

.feature-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.feature-mockup {
    margin-top: auto;
    text-align: center;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.feature-mockup-single img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-tilted-left {
    transform: rotate(-8deg);
}

.mockup-tilted-right {
    transform: rotate(6deg);
}

.feature-card:hover .mockup-tilted-left {
    transform: rotate(-8deg) scale(1.05) translateY(-8px);
}

.feature-card:hover .mockup-tilted-right {
    transform: rotate(6deg) scale(1.05) translateY(-8px);
}

.feature-mockup-double {
    position: relative;
    width: 100%;
    margin-top: 15%;
}

.mockup-double-1,
.mockup-double-2 {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-double-1 {
    position: relative;
    z-index: 2;
    transform: rotate(-10deg) translateX(-50px);
}

.mockup-double-2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px;
    z-index: 1;
    transform: rotate(8deg);
}

.feature-card:hover .mockup-double-1 {
    transform: rotate(-10deg) translateX(-30px) scale(1.05) translateY(-8px);
}

.feature-card:hover .mockup-double-2 {
    transform: rotate(8deg) scale(1.05) translateY(-8px);
}

.feature-card::before {
    display: none;
}

.feature-card::after {
    display: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--dark);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'DM Serif Display', serif;
}

.feature-card:hover .feature-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin: 0;
    font-weight: 400;
    opacity: 0.85;
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: linear-gradient(230deg, #8BC34A 0%, #33C4A0 50%, #81D4FA 100%);
    padding: 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg/shelfee-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-section .section-title {
    color: var(--light) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--light) !important;
    background-clip: unset !important;
}

.benefits-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light);
    line-height: 1.4;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #33C4A0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon i {
    width: 28px;
    height: 28px;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.benefit-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: white;
    margin: 0;
    font-weight: 500;
    padding-top: 0.5rem;
}

/* ===== Revenue Section ===== */
.revenue-section {
    background: white;
    padding: 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.revenue-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.revenue-card-purple {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
}

.revenue-card-teal {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
}

.revenue-content {
    flex: 1;
}

.revenue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.revenue-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.revenue-icon i {
    width: 28px;
    height: 28px;
}

.revenue-card:hover .revenue-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.revenue-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.revenue-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.revenue-highlight {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.revenue-cta {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border-left: 4px solid;
}

.revenue-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--leaf-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.revenue-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark);
    opacity: 0.7;
    font-weight: 500;
}

/* ===== Image Divider Section ===== */
.image-divider {
    height: 30vh;
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1542838132-92c53300491e?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    scroll-snap-align: none;
}

.divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.7) 0%, rgba(51, 196, 160, 0.7) 50%, rgba(129, 212, 250, 0.7) 100%);
    backdrop-filter: blur(2px);
}

/* ===== Claim Section ===== */
.claim-section {
    background: white;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.claim-text {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark);
    letter-spacing: -0.02em;
    position: relative;
}

.claim-text::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    background: var(--leaf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* ===== Team Section ===== */
.team-section {
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.team-intro {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--dark);
    font-weight: 400;
}

.team-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 280px;
    margin: 0 auto;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 40px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image-wrapper {
    box-shadow: 0 20px 60px rgba(139, 195, 74, 0.25);
    transform: translateY(-8px);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.08);
}

.team-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 2;
    transition: bottom 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(139, 195, 74, 0.85) 0%, 
        rgba(51, 196, 160, 0.6) 30%, 
        rgba(129, 212, 250, 0.3) 60%, 
        transparent 100%);
    z-index: -1;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 195, 74, 0.96) 0%, 
        rgba(51, 196, 160, 0.96) 50%, 
        rgba(129, 212, 250, 0.96) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-card:hover .team-info {
    bottom: 0;
}

.team-card:hover .team-info::before {
    opacity: 0;
}

.team-card:hover .team-info::after {
    opacity: 1;
}

.team-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.team-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.team-card:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.team-skills {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    color: white;
}

.team-skills li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
    text-align: left;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-skills li {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover .team-skills li:nth-child(1) {
    transition-delay: 0.15s;
}

.team-card:hover .team-skills li:nth-child(2) {
    transition-delay: 0.25s;
}

.team-card:hover .team-skills li:nth-child(3) {
    transition-delay: 0.35s;
}

.team-card:hover .team-skills li:nth-child(4) {
    transition-delay: 0.45s;
}

.team-skills li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url('../img/logo/symbol-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.team-tagline {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    background: var(--leaf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--leaf-gradient);
}

.footer-logo {
    height: 25px;
    width: auto;
}

.footer-tagline {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    background: var(--leaf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--grey);
    margin: 0;
    font-weight: 400;
}

/* ===== Animations ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mockupSlideOut1 {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.9);
        right: 155px;
        top: 115px;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(-12deg) scale(1);
        right: 280px;
        top: 80px;
    }
}

@keyframes mockupSlideOut2 {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.85);
        right: 155px;
        top: 115px;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(8deg) scale(1);
        right: 30px;
        top: 150px;
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(-12deg);
    }
    50% {
        transform: translateY(-20px) rotate(-12deg);
    }
}

@keyframes floatAnimation2 {
    0%, 100% {
        transform: translateY(0px) rotate(8deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes revealBorderPath {
    0% {
        clip-path: polygon(
            0% 0%, 0% 0%, 0% 0%, 0% 0%
        );
    }
    25% {
        clip-path: polygon(
            0% 0%, 100% 0%, 100% 0%, 0% 0%
        );
    }
    50% {
        clip-path: polygon(
            0% 0%, 100% 0%, 100% 100%, 0% 0%
        );
    }
    75% {
        clip-path: polygon(
            0% 0%, 100% 0%, 100% 100%, 0% 100%
        );
    }
    100% {
        clip-path: polygon(
            0% 0%, 100% 0%, 100% 100%, 0% 100%
        );
    }
}

@keyframes sweepBeam {
    0% {
        left: 0%;
        transform: translateY(-50%) rotate(-10deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        left: 50%;
        transform: translateY(-50%) rotate(0deg);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        transform: translateY(-50%) rotate(10deg);
        opacity: 0;
    }
}

@keyframes floatMockup1 {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(-18deg);
    }
    50% {
        transform: translate(-10px, -50px) rotate(-12deg);
    }
    75% {
        transform: translate(15px, -25px) rotate(-16deg);
    }
}

@keyframes floatMockup2 {
    0%, 100% {
        transform: translate(0, 0) rotate(12deg);
    }
    25% {
        transform: translate(-25px, 20px) rotate(15deg);
    }
    50% {
        transform: translate(15px, 40px) rotate(9deg);
    }
    75% {
        transform: translate(-15px, 25px) rotate(13deg);
    }
}

/* ===== Slide In Animations ===== */

/* Initial hidden state for all animated elements */
.section-title:not(.visible),
.hero-title:not(.visible),
.claim-text:not(.visible),
.benefits-subtitle:not(.visible),
.hero-description:not(.visible),
.team-intro:not(.visible),
.scroll-indicator:not(.visible),
.mockup:not(.visible) {
    opacity: 0;
}

/* Hide individual cards only when not in a group animation */
.benefit-item:not(.visible),
.revenue-card:not(.visible) {
    opacity: 0;
}

/* Hide card groups for features and team sections */
#funzionalita .row.g-4:not(.visible),
#features .row.g-4:not(.visible),
#team .row.g-4:not(.visible) {
    opacity: 0;
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-in-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-stagger {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-in-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Unified animation for card containers */
.slide-in-group {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-in-group.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Scroll Snap - Disabled (using JS implementation) ===== */
@media (min-width: 992px) {
    /* Removed CSS scroll-snap, using JavaScript instead */
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    html {
        scroll-snap-type: none !important;
    }
    
    /* Disable scroll snap and full height on mobile */
    section {
        scroll-snap-align: none !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .features-section,
    .benefits-section,
    .revenue-section,
    .claim-section,
    .team-section {
        display: block;
        overflow: visible;
    }
    
    .glass-nav .container > .row > .col-lg-8 {
        border-radius: 50px;
        max-width: 95%;
        padding: 1rem 1rem;
    }
    
    /* Mobile Menu Toggler - Bootstrap Style */
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        position: relative;
        z-index: 1001;
        background: transparent;
        border-radius: 0.25rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2836, 36, 36, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.5em;
        height: 1.5em;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
    }
    
    /* Mobile Menu with Liquid Effect */
    .navbar-collapse {
        position: fixed;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        width: calc(100vw + 20px);
        height: calc(100vh + 20px);
        background: linear-gradient(135deg, rgba(139, 195, 74, 0.98) 0%, rgba(51, 196, 160, 0.98) 50%, rgba(129, 212, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
        margin: 0;
        clip-path: circle(0% at calc(100% - 40px) 60px);
        transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        visibility: hidden;
    }
    
    .navbar-collapse.show {
        clip-path: circle(150% at calc(100% - 40px) 60px);
        visibility: visible;
    }
    
    .navbar-collapse.collapsing {
        visibility: visible;
        transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .navbar-collapse.collapsing:not(.show) {
        clip-path: circle(0% at calc(100% - 40px) 60px);
    }
    
    .navbar-nav {
        text-align: right;
        margin-bottom: auto;
        padding-top: 100px;
        width: 100%;
        max-width: 600px;
        align-self: flex-end;
        padding-right: 2rem;
    }
    
    .nav-item {
        margin: 2rem 0;
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        text-align: right;
    }
    
    .navbar-collapse.show .nav-item {
        animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    
    .navbar-collapse.show .nav-item:nth-child(1) {
        animation-delay: 0.2s;
    }
    
    .navbar-collapse.show .nav-item:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .navbar-collapse.show .nav-item:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .navbar-collapse.show .nav-item:nth-child(4) {
        animation-delay: 0.5s;
    }
    
    .nav-link {
        color: white !important;
        font-size: 2.5rem;
        font-weight: 400;
        margin: 0;
        padding: 0.5rem 0;
        font-family: 'DM Serif Display', serif;
        letter-spacing: -0.02em;
        position: relative;
        display: inline-block;
        text-align: right;
    }
    
    /* .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 60%;
        height: 3px;
        background: white;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    } */
    
    .nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }
    
    /* Hide active link indicator in mobile menu */
    .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .btn-demo-nav {
        margin-top: 3rem;
        background: white;
        color: #33C4A0;
        border: 2px solid white;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 1rem 3rem;
        font-family: 'DM Sans', sans-serif;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-nav .btn-demo-nav:hover {
        background: rgba(255, 255, 255, 0.95);
        color: #33C4A0;
        transform: translateY(-2px);
    }
    
    .mobile-menu-footer {
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: auto;
        opacity: 0;
        width: 100%;
        align-self: center;
    }
    
    .navbar-collapse.show .mobile-menu-footer {
        animation: fadeIn 0.5s ease-out 0.6s forwards;
    }
    
    .mobile-menu-footer p {
        margin: 0.25rem 0;
        font-weight: 300;
    }
    
    @keyframes popIn {
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
    
    /* Hero section mobile adjustments */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content .btn-demo {
        position: fixed;
        bottom: 20px;
        left: 5%;
        z-index: 9999;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        background: rgba(250, 250, 250, 0.4);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }
    
    /* Floating CTA cloned to body */
    .floating-cta {
        position: fixed !important;
        bottom: 20px !important;
        left: 5% !important;
        z-index: 99999 !important;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        background: rgba(250, 250, 250, 0.4);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }
    
    /* Button white when mobile menu is open */
    body.menu-open .floating-cta {
        color: white !important;
        background: rgba(250, 250, 250, 0.4) !important;
        background-image: none !important;
        -webkit-text-fill-color: white !important;
    }
    
    /* Button on light background */
    .hero-content .btn-demo.on-light,
    .floating-cta.on-light {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(139, 195, 74, 0.5);
        color: transparent;
        background-image: var(--leaf-gradient);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .mockup-container-wrapper {
        position: relative;
        margin-top: 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
    }
    
    .mockup-container {
        height: 450px;
        margin-top: 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        overflow: visible;
    }
    
    .mockup {
        width: 220px;
        border-radius: 30px;
        background: none;
        backdrop-filter: none;
        overflow: visible;
        border: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .mockup::before {
        content: none;
        display: none;
    }
    
    .mockup img {
        border-radius: 30px;
    }
    
    .mockup-1 {
        right: auto;
        left: 50%;
        margin-left: -200px;
        top: auto;
        bottom: 20px;
    }
    
    .mockup-2 {
        right: auto;
        left: 50%;
        margin-left: -10px;
        top: auto;
        bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
        margin-top: 10%;
    }
    
    .hero-section .container,
    .hero-section .row {
        overflow: visible;
        max-height: 100vh;
    }
    
    .mockup-container {
        height: 600px;
        overflow: visible;
        margin-top: 50%;
    }
    
    .mockup {
        background: none;
        backdrop-filter: none;
        overflow: visible;
        border: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    
    .mockup::before {
        content: none;
        display: none;
    }
    
    .mockup-1 {
        right: auto;
        left: 20%;
        margin-left: -150px;
        top: auto;
        bottom: 20px;
    }
    
    .mockup-2 {
        right: auto;
        left: 50%;
        margin-left: -45px;
        top: auto;
        bottom: 60px;
    }
    
    .nav-link {
        font-size: 1.75rem;
    }

    .section-title,
    .benefits-subtitle {
        display: flex;
        justify-content: center;
    }
}

/* ===== Mobile Navigation (Flipping Cards Style) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.header.menu-open {
    opacity: 0;
    pointer-events: none;
}

.header__bar {
    position: relative;
    z-index: 1001;
}

.header__logo a {
    display: inline-block;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Desktop Menu */
.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    display: block;
}

/* Mobile Menu Button */
.nav-button-open {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.nav-button-open.pointer-events-none {
    pointer-events: none;
}

.nav-button-open i {
    width: 28px;
    height: 28px;
}

.nav-button-open:hover {
    transform: scale(1.1);
}

/* Mobile Navigation Overlay */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    pointer-events: none;
}

.nav__inner {
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav__inner.is-active {
    opacity: 1;
    pointer-events: auto;
}

.nav__bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.98) 0%, rgba(51, 196, 160, 0.98) 50%, rgba(129, 212, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
    transform-origin: bottom;
}

.nav__bg.origin-top {
    transform-origin: top;
}

.nav__container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding-top: 5rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

@media (max-width: 767px) {
    .nav__container {
        padding-top: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .nav__bg {
        clip-path: circle(0% at calc(100% - 40px) 60px);
    }
    
    .nav__inner.is-active .nav__bg {
        clip-path: circle(150% at calc(100% - 40px) 60px);
    }
}

.nav__header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 3rem;
}

.nav-btn-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.nav-btn-close.pointer-events-none {
    pointer-events: none;
}

.nav-btn-close i {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
    pointer-events: none;
}

.nav-btn-close:hover {
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 767px) {
    .nav-btn-close i {
        width: 32px;
        height: 32px;
    }
}

.nav__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 2rem;
}

.nav__content__left {
    position: relative;
    flex: 0 0 70%;
    max-width: 70%;
}

.nav__content__right {
    position: relative;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 767px) {
    .nav__content {
        flex-direction: column;
        padding-top: 1rem;
    }
    
    .nav__content__left {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .nav__content__right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Navigation List */
.navList__wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    pointer-events: none;
}

.navList__wrap ul.is-visible {
    pointer-events: auto !important;
}

.navList__wrap li {
    overflow: hidden;
    margin-bottom: 1rem;
}

.navList__wrap a {
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.navList__wrap a:hover {
    color: white !important;
    opacity: 0.8;
}

.navList {
    margin-top: -0.5rem;
    pointer-events: none;
}

.navList li a {
    cursor: pointer;
    display: inline-block;
    color: white;
    padding: 8px 0;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -0.02em;
}

@media (max-width: 991px) {
    .navList li a {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .navList li a {
        font-size: 2rem;
    }
}

/* Navigation Info */
.nav__info__item {
    margin-top: 2.5rem;
}

.nav__info__item:first-child {
    margin-top: 0;
}

.nav__info__item h5 {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.nav__info__item a,
.nav__info__item p {
    display: block;
    font-size: 1.125rem;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nav__info__item a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.nav__info__content > * {
    margin-top: 0.5rem;
}

.nav__info__content > *:first-child {
    margin-top: 0;
}

@media (max-width: 767px) {
    .nav__info__item {
        margin-top: 2rem;
    }
    
    .nav__info__item a,
    .nav__info__item p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Body scroll lock when menu is open */
.html-overflow-hidden {
    overflow: hidden !important;
}
