:root {
    --clr-bg: #0A0A0A;
    --clr-aura: #00FFD1;
    --clr-aura-rgb: 0, 255, 209;
    --clr-text-main: #FFFFFF;
    --clr-text-muted: rgba(255, 255, 255, 0.8);
    --clr-surface: rgba(255, 255, 255, 0.05);
    --clr-accent-glow: rgba(0, 255, 209, 0.2);
    --font-main: 'Inter', sans-serif;
    --e-out: cubic-bezier(0.23, 1, 0.32, 1)
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg);
    overflow-x: hidden;
    max-width: 100vw
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased
}

@media(prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2500;
    background: rgba(10, 10, 15, .8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 255, .1);
    transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: .5rem 0
}

body.menu-open {
    overflow: hidden !important
}

.header.scrolled {
    background: rgba(10, 10, 15, .95);
    padding: .4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    margin-right: 2rem
}

.aura-icon {
    height: 48px;
    width: auto;
    filter: hue-rotate(-55deg) saturate(2) brightness(1.2);
    transition: .3s ease
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--clr-text-main)
}

.badge-master {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--clr-aura);
    border: 1px solid var(--clr-aura);
    padding: .3rem .8rem;
    border-radius: 4px
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: nowrap
}

.nav-links a {
    text-decoration: none;
    color: hsla(0, 0%, 100%, .6);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
    position: relative;
    white-space: nowrap
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-aura);
    transition: width .3s ease;
    box-shadow: 0 0 10px var(--clr-aura)
}

.nav-links a:hover {
    color: #fff
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-links a.active {
    color: var(--clr-aura)
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001
}

.mobile-menu-btn span,
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .3s ease
}

.mobile-menu-btn span {
    top: 50%;
    transform: translateY(-50%)
}

.mobile-menu-btn span::before {
    top: -8px
}

.mobile-menu-btn span::after {
    top: 8px
}

.mobile-menu-btn.active span {
    background: rgba(0, 0, 0, 0)
}

.mobile-menu-btn.active span::before {
    transform: rotate(45deg);
    top: 0
}

.mobile-menu-btn.active span::after {
    transform: rotate(-45deg);
    top: 0
}

@media(max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, .98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.8rem;
        z-index: 2000;
        padding: 6rem 2rem 8rem 2rem;
        overflow-y: auto
    }

    .nav-links.active {
        display: flex
    }

    .nav-links a {
        font-size: 1.2rem
    }

    .mobile-menu-btn {
        display: block
    }

    .badge-master {
        display: none
    }
}

.aura-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #151515 0%, #0D0D0D 100%)
}

.aura-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1)
}

.aura-1 {
    width: 60vw;
    height: 60vw;
    background: var(--clr-aura);
    top: -20%;
    right: -10%
}

.aura-2 {
    width: 40vw;
    height: 40vw;
    background: #f0f;
    bottom: -10%;
    left: -10%;
    opacity: .05
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5vw 0;
    overflow-x: hidden
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 5vh
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5vw
}

.hero-content {
    flex: 1
}

.hero-tagline {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .4em;
    color: var(--clr-aura);
    margin-bottom: 1.5rem
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -0.04em;
    margin-bottom: 2rem
}

.text-glow {
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px hsla(0, 0%, 100%, .3);
    position: relative;
    display: inline-block
}

.text-glow::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: var(--clr-text-main);
    filter: drop-shadow(0 0 20px var(--clr-aura));
    -webkit-text-stroke: 0
}

.text-glow-privacy {
    color: var(--clr-aura);
    text-shadow: 0 0 20px rgba(0, 255, 209, .6), 0 0 40px rgba(0, 255, 209, .4);
    font-weight: 900
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    max-width: 45ch
}

.hero-visual {
    flex: .8;
    position: relative
}

.aura-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    transform: perspective(1000px) rotateY(-5deg)
}

.aura-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .8s ease
}

.aura-image-card:hover .aura-img {
    transform: scale(1.05)
}

.card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--clr-aura-glow) 0%, transparent 100%);
    pointer-events: none
}

@media(max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center
    }

    .hero-section {
        padding-top: 5vh
    }

    .hero-desc {
        margin: 0 auto
    }

    .aura-image-card {
        transform: none;
        max-width: 80%;
        margin: 0 auto
    }
}

.master-section {
    padding: 8vh 0;
    position: relative
}

.master-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center
}

.master-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .6)
}

.master-photos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

.master-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.1);
    transition: transform .8s var(--e-out)
}

.master-img:hover {
    transform: scale(1.05)
}

.master-bio {
    font-size: 1.4rem;
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
    line-height: 1.8
}

.master-stats {
    display: flex;
    gap: 4rem
}

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

.stat-val {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-aura);
    line-height: 1
}

.stat-label {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--clr-text-muted);
    margin-top: .5rem
}

@media(max-width: 768px) {
    .master-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0
    }

    .master-visual {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box
    }

    .master-photos-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%
    }

    .master-img-wrap {
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .4)
    }

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

    .master-info {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        text-align: left
    }

    .master-bio {
        font-size: .95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: var(--clr-text-main)
    }

    .master-info .hero-tagline,
    .master-info h3,
    .master-info p[style*=accent-primary] {
        text-align: center;
        width: 100%
    }

    .master-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin: 1.5rem 0 !important
    }

    .stat-item {
        justify-content: center;
        text-align: center
    }
}

.pricing-section {
    padding: 8vh 0;
    position: relative
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5vh
}

@media(max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 5vh auto 0
    }
}

.pricing-card {
    background: var(--clr-surface);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(0, 0%, 100%, .05);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    transition: .5s var(--e-out)
}

.pricing-card.featured-glow {
    border-color: var(--clr-aura);
    box-shadow: 0 0 50px rgba(0, 255, 209, .1);
    transform: scale(1.05)
}

.card-header {
    margin-bottom: 2.5rem;
    text-align: center
}

.freq-badge {
    display: inline-block;
    padding: .5rem 1.2rem;
    background: var(--clr-accent-glow);
    color: var(--clr-aura);
    font-weight: 700;
    font-size: .8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem
}

.card-header h3 {
    font-size: 2rem;
    letter-spacing: -0.03em
}

.plan-tiers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: hsla(0, 0%, 100%, .03);
    border-radius: 12px;
    position: relative;
    transition: .3s ease
}

.tier-item.featured {
    border: 1px solid rgba(0, 255, 209, .3);
    background: rgba(0, 255, 209, .05)
}

.tier-name {
    font-weight: 600;
    color: var(--clr-text-muted)
}

.tier-price {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--clr-text-main)
}

.save-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: .65rem;
    background: var(--clr-aura);
    color: #000;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase
}

.btn-pricing {
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    text-decoration: none;
    background: hsla(0, 0%, 100%, .05);
    color: var(--clr-text-main);
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid hsla(0, 0%, 100%, .1);
    transition: .4s ease
}

.btn-glow {
    background: var(--clr-aura);
    color: #000;
    border: none
}

.btn-pricing:hover {
    transform: translateY(-5px);
    border-color: var(--clr-aura)
}

.btn-glow:hover {
    box-shadow: 0 10px 25px rgba(0, 255, 209, .3)
}

.pricing-cta {
    display: flex;
    justify-content: center;
    margin-top: 6rem
}

.main-cta {
    max-width: 400px;
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

@media(max-width: 768px) {
    .pricing-container {
        text-align: center
    }

    .pricing-grid {
        justify-items: center
    }
}

.gallery-section {
    padding: 8vh 0;
    overflow: hidden
}

.carousel-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-1*var(--container-padding, 5vw));
    padding: 2rem 0
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 0 5vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab
}

.carousel-track.grabbing {
    cursor: grabbing;
    scroll-snap-type: none
}

.carousel-track::-webkit-scrollbar {
    display: none
}

.carousel-item {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
    background: var(--clr-surface);
    border: 1px solid hsla(0, 0%, 100%, .05);
    transition: transform .6s var(--e-out), border-color .6s var(--e-out)
}

@media(max-width: 768px) {
    .carousel-item {
        flex: 0 0 280px;
        height: 400px
    }

    .gallery-container {
        text-align: center
    }
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--e-out)
}

.carousel-item:hover {
    transform: translateY(-10px);
    border-color: var(--clr-aura)
}

.carousel-item:hover img {
    transform: scale(1.05)
}

.badge-exclusive {
    display: inline-block;
    padding: .6rem 1.8rem;
    background: rgba(0, 255, 255, .05);
    border: 1px solid var(--clr-aura);
    color: var(--clr-aura);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(var(--clr-aura-rgb), 0.2);
    animation: pulse-aura 3s infinite
}

@keyframes pulse-aura {
    0% {
        border-color: var(--clr-aura);
        box-shadow: 0 0 10px rgba(var(--clr-aura-rgb), 0.2)
    }

    50% {
        border-color: #fff;
        box-shadow: 0 0 25px rgba(var(--clr-aura-rgb), 0.5)
    }

    100% {
        border-color: var(--clr-aura);
        box-shadow: 0 0 10px rgba(var(--clr-aura-rgb), 0.2)
    }
}

.card-icon-large {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px var(--clr-aura));
    transition: transform .4s var(--e-out);
    display: inline-block
}

.info-card:hover .card-icon-large {
    transform: scale(1.15) rotate(8deg)
}

.info-section {
    padding: 10vh 0;
}

.info-container {
    text-align: center
}

@media(max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr
    }
}

.faq-section {
    padding: 8vh 0;
    background: linear-gradient(to bottom, transparent, rgba(var(--clr-aura-rgb), 0.03))
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem
}

.faq-accordion {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.faq-item {
    background: var(--clr-surface);
    border: 1px solid hsla(0, 0%, 100%, .05);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .3s ease
}

.faq-item:hover .faq-question {
    color: var(--clr-aura)
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform .3s ease
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
    color: var(--clr-text-muted);
    font-size: .95rem;
    line-height: 1.6
}

.faq-item.active {
    border-color: var(--clr-aura);
    background: rgba(var(--clr-aura-rgb), 0.05)
}

.faq-item.active .faq-question {
    color: var(--clr-aura)
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px
}

@media(max-width: 768px) {
    .faq-container {
        text-align: center
    }
}

.contact-section {
    padding: 8vh 0 12vh
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

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

.contact-info h3,
.social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem
}

.contact-item {
    text-decoration: none;
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    transition: color .3s ease
}

.contact-item:hover {
    color: var(--clr-aura)
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap
}

.social-icon {
    text-decoration: none;
    color: #fff;
    padding: .8rem 1.5rem;
    background: hsla(0, 0%, 100%, .05);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: .8rem
}

.icon-social {
    width: 1.2rem;
    height: 1.2rem;
    stroke: var(--clr-aura)
}

.social-icon:hover {
    background: var(--clr-aura);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--clr-accent-glow)
}

.social-icon:hover .icon-social {
    stroke: #000
}

@media(max-width: 768px) {
    .contact-container {
        text-align: center
    }

    .social-icons {
        justify-content: center
    }

    .social-links>div[style*=margin-top] {
        margin-bottom: 8rem !important
    }
}

.trust-section {
    padding: 8vh 0
}

.trust-container {
    max-width: 800px;
    margin: 0 auto
}

.testimonial {
    background: var(--clr-surface);
    padding: 4rem;
    border-radius: 24px;
    position: relative;
    border: 1px solid hsla(0, 0%, 100%, .03)
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--clr-aura);
    opacity: .2;
    font-family: serif
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--clr-text-main)
}

.author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-aura);
    text-transform: uppercase;
    letter-spacing: .1em
}

@media(max-width: 768px) {
    .trust-container {
        text-align: center
    }

    .testimonials-grid {
        justify-items: center
    }
}

.focus-dock {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000
}

.dock-container {
    background: rgba(20, 20, 20, .8);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid hsla(0, 0%, 100%, .1);
    padding: .75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.dock-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem
}

.dock-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: var(--clr-text-muted);
    border-radius: 50%;
    transition: .3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none
}

.dock-link svg {
    width: 1.5rem;
    height: 1.5rem
}

.dock-link:hover,
.dock-link.active {
    color: var(--clr-aura);
    background: rgba(var(--clr-aura-rgb), 0.1);
    transform: scale(1.1)
}

.dock-separator {
    width: 1px;
    height: 24px;
    background: hsla(0, 0%, 100%, .1);
    margin: 0 .5rem
}

.dock-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--clr-aura);
    color: #000;
    border-radius: 50%;
    transition: .3s ease
}

.dock-cta:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 5px 20px var(--clr-accent-glow)
}

.cta-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--clr-aura);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .5
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

@media(max-width: 768px) {
    .focus-dock {
        left: 50%;
        transform: translateX(-50%);
        width: auto
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1)
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0)
}

[data-reveal=delay] {
    transition-delay: .2s
}

[data-reveal=delay-2] {
    transition-delay: .4s
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem
}

.modal.active {
    display: flex
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(8px)
}

.modal-content {
    position: relative;
    background: #111;
    border: 1px solid rgba(0, 255, 255, .2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    box-shadow: 0 0 50px rgba(0, 255, 255, .1);
    transform: translateY(20px);
    opacity: 0;
    transition: all .5s cubic-bezier(0.23, 1, 0.32, 1)
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: .5;
    transition: opacity .3s ease
}

.modal-close:hover {
    opacity: 1;
    color: var(--clr-aura)
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: .5rem
}

.modal-header p {
    color: var(--clr-text-muted)
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    opacity: 0;
    animation: fadeSlideUp .5s ease forwards
}

.form-group:nth-child(1) {
    animation-delay: .1s
}

.form-group:nth-child(2) {
    animation-delay: .2s
}

.form-group:nth-child(3) {
    animation-delay: .3s
}

.form-group:nth-child(4) {
    animation-delay: .4s
}

.form-group:nth-child(5) {
    animation-delay: .5s
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

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

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-aura)
}

.form-group input,
.form-group select {
    background: hsla(0, 0%, 100%, .05);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all .3s ease
}

.form-group select option {
    background: #111;
    color: #fff
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clr-aura);
    background: rgba(0, 255, 209, .05);
    box-shadow: 0 0 15px rgba(0, 255, 209, .1)
}

.btn-submit {
    margin-top: 1rem;
    background: var(--clr-aura);
    color: #000;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s ease
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--clr-accent-glow);
    filter: brightness(1.1)
}

@media(max-width: 500px) {
    .modal-content {
        padding: 2rem
    }
}

@media(max-width: 768px) {
    .modal {
        padding: 1rem
    }

    .modal-content {
        width: 100%;
        max-width: 500px;
        padding: 1.5rem 1rem 3rem 1rem;
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain
    }

    .modal-header {
        margin-bottom: 1.5rem
    }

    .modal-header h2 {
        font-size: 1.5rem
    }

    .booking-form {
        gap: 1rem
    }
}

.hidden-field {
    display: none !important;
    flex-direction: column;
    gap: 1.5rem
}

.hidden-field.active {
    display: flex !important
}

.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    z-index: 10001;
    transition: transform .6s cubic-bezier(0.23, 1, 0.32, 1), opacity .6s ease;
    opacity: 0;
    pointer-events: none
}

.cookie-banner.active {
    transform: translateY(-130px);
    opacity: 1;
    pointer-events: all
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 209, .2);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.cookie-text p {
    color: hsla(0, 0%, 100%, .8);
    font-size: .95rem;
    line-height: 1.5
}

.cookie-text a {
    color: var(--clr-aura);
    font-weight: 700;
    text-decoration: none
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: .3s;
    text-transform: uppercase;
    letter-spacing: 1px
}

.btn-accept {
    background: var(--clr-aura);
    color: #000;
    border: none
}

.btn-accept:hover {
    box-shadow: 0 0 20px rgba(0, 255, 209, .4);
    transform: translateY(-2px)
}

.btn-reject {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 1px solid hsla(0, 0%, 100%, .2)
}

.btn-reject:hover {
    background: hsla(0, 0%, 100%, .1)
}

@media(max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 5px;
        right: 5px;
        max-width: calc(100vw - 10px)
    }

    .cookie-banner.active {
        transform: translateY(-90px)
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
        border-radius: 12px;
        max-width: 100%;
        box-sizing: border-box
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap
    }

    .cookie-text p {
        font-size: .85rem;
        line-height: 1.4;
        padding: 0
    }

    .btn-cookie {
        padding: 10px 20px;
        font-size: .9rem
    }
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
    width: 100%
}

/* Custom Sections */
.journey-section {
    position: relative;
    overflow: hidden;
}

.step-card {
    transition: transform 0.4s var(--e-out), box-shadow 0.4s var(--e-out);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 209, 0.1);
    border-color: var(--clr-aura) !important;
}

/* Transformation Slider Enhancements */
.slider-grid::-webkit-scrollbar {
    display: none;
}

.slider-nav:hover {
    background: #fff !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.dot.active {
    background: var(--clr-aura) !important;
    width: 25px !important;
    border-radius: 10px !important;
}

@media (max-width: 1024px) {
    .slider-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .slider-card {
        flex: 0 0 320px !important;
    }

    .before-overlay img {
        width: 320px !important;
        /* Update to match mobile card width */
    }
}

.ba-slider img {
    pointer-events: none;
}

.before-img-raw {
    width: 500px !important;
    max-width: none !important;
}

@media (max-width: 768px) {
    .before-img-raw {
        width: 320px !important;
    }
}

.target-card:hover {
    background: rgba(var(--clr-aura-rgb), 0.05) !important;
    transform: translateX(10px);
}

.guarantee-container {
    transition: transform 0.5s var(--e-out);
}

.guarantee-container:hover {
    transform: scale(1.02);
}

/* Attention Animation for CTAs */
.btn-glow.attention {
    animation: btn-attention 3s infinite;
}

@keyframes btn-attention {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 255, 209, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 255, 209, 0.4);
    }
}

/* Aura 2.0 - Transformation Path */
.transformation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .transformation-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transformation-steps {
        grid-template-columns: 1fr;
    }
}

.step-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--clr-aura) !important;
    background: rgba(var(--clr-aura-rgb), 0.05) !important;
}

/* Aura 2.0 - Proof Section (Visual) */
.proof-carousel-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.proof-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 5vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.proof-track::-webkit-scrollbar {
    display: none;
}

.proof-item {
    flex: 0 0 320px;
    scroll-snap-align: center;
    transition: transform 0.5s var(--e-out);
}

.proof-item img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.proof-item:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Floating WhatsApp */
.wa-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.wa-floating:hover {
    transform: scale(1.1) rotate(5deg);
    background: #20ba5a;
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wa-floating:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .wa-floating {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .wa-tooltip {
        display: none;
    }
}