@import"https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&family=Bebas+Neue&display=swap";

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

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: clip
}

.scroll-container {
    position: relative;
    width: 100%;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.4s ease, color 0.4s ease;
}

.mobile-menu {
    display: none;
}

::selection {
    background: var(--accent-color);
    color: #fff
}

.theme-dark {
    --bg-primary: #050905;
    --bg-secondary: #080f08;
    --bg-tertiary: #0a140a;
    --bg-card: #080f08;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, .6);
    --text-muted: rgba(255, 255, 255, .4);
    --border-color: rgba(74, 222, 128, .12);
    --border-hover: rgba(74, 222, 128, .25);
    --accent-color: #22c55e;
    --accent-hover: #15803d;
    --accent-light: #4ade80;
    --glow-color: rgba(34, 197, 94, .25);
    --hero-radial: radial-gradient(circle 80% 80% at 70% 30%, #0c2210 0%, #050905 85%);
    --partners-bg: #030603;
    --partners-border: rgba(255, 255, 255, .05);
    --footer-bg: #020402;
    --widget-bg: #080f08;
    --input-bg: rgba(255, 255, 255, .03);
    --input-border: rgba(255, 255, 255, .08);
    --sum-bg: rgba(255, 255, 255, .02);
    --play-bg: rgba(22, 163, 74, .9);
    --grid-opacity: .03;
    --svg-opacity: .95;
    --svg-accent-opacity: .35
}

.theme-light {
    --bg-primary: #f4f8f4;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e8efe8;
    --bg-card: #ffffff;
    --text-primary: #0a170c;
    --text-secondary: #2c3e2f;
    --text-muted: #667869;
    --border-color: rgba(21, 128, 61, .15);
    --border-hover: rgba(21, 128, 61, .32);
    --accent-color: #15803d;
    --accent-hover: #166534;
    --accent-light: #22c55e;
    --glow-color: rgba(21, 128, 61, .15);
    --hero-radial: radial-gradient(circle 80% 80% at 70% 30%, #e2eee4 0%, #f4f8f4 85%);
    --partners-bg: #e8efe8;
    --partners-border: rgba(21, 128, 61, .08);
    --footer-bg: #071208;
    --widget-bg: #ffffff;
    --input-bg: rgba(0, 0, 0, .02);
    --input-border: rgba(0, 0, 0, .08);
    --sum-bg: rgba(21, 128, 61, .05);
    --play-bg: rgba(21, 128, 61, .9);
    --grid-opacity: .06;
    --svg-opacity: .75;
    --svg-accent-opacity: .25
}

.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 222, 128, .6);
    transform: translate(-50%, -50%);
    transition: all .15s ease-out;
    mix-blend-mode: difference
}

.cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    transform: translate(-50%, -50%);
    transition: left .04s, top .04s
}

@media (max-width: 1023px) {

    .cursor,
    .cursor-dot {
        display: none !important
    }

    body,
    html,
    div,
    button,
    a,
    span,
    select,
    input,
    textarea {
        cursor: auto !important
    }
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 9999;
    background: linear-gradient(90deg, #15803d, #22c55e, #86efac);
    transition: width .1s
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s cubic-bezier(.16, 1, .3, 1)
}

.nav.solid {
    background: var(--bg-primary);
    opacity: .95;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color)
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none
}

.nav-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #15803d, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.nav-brand-text {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.45rem;
    letter-spacing: .05em;
    color: var(--text-primary);
    line-height: 1
}

.nav-brand-sub {
    font-size: .65rem;
    color: var(--accent-light);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem
}

.nav-link {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    letter-spacing: .08em;
    transition: color .2s;
    background: none;
    border: none;
    text-transform: uppercase;
    text-decoration: none
}

.nav-link:hover {
    color: var(--accent-light)
}

.nav-link.active {
    color: var(--accent-light);
    font-weight: 700
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--accent-light);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .3s;
    text-decoration: none;
    display: inline-block
}

.nav-cta:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px var(--glow-color)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

.btn-fill {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 15px 36px;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 48px
}

.btn-fill:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-hover));
    transform: translate(-100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.btn-fill:hover:before {
    transform: translate(0)
}

.btn-fill span {
    position: relative;
    z-index: 1
}

.btn-fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--glow-color)
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 15px 36px;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    min-height: 48px
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: var(--sum-bg);
    transform: translateY(-2px)
}

.btn-white {
    background: #fff;
    color: #15803d;
    border: none;
    padding: 15px 36px;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 48px
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px #00000040;
    background: #f4f8f4
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    padding: 15px 36px;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 48px;
    gap: 8px
}

.btn-outline-white:hover {
    background: #ffffff1a;
    border-color: #fff;
    transform: translateY(-2px)
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background .3s, color .3s
}

.theme-toggle:hover {
    background: var(--sum-bg);
    color: var(--accent-light)
}

.theme-icon {
    width: 20px;
    height: 20px;
    animation: rotateIcon .5s ease-in-out
}

@keyframes rotateIcon {
    0% {
        transform: rotate(-45deg);
        opacity: 0
    }

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

@media (max-width:900px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .mobile-menu {
        position: absolute;
        top: 76px;
        right: clamp(1.5rem, 5vw, 5rem);
        width: 240px;
        background-color: var(--bg-card) !important;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-hover);
        border-radius: 12px;
        box-shadow: 0 15px 40px #00000040, 0 0 15px var(--glow-color);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1.5rem;
        gap: 1.1rem;
        z-index: 99999 !important;
        overflow-y: auto;
        transform-origin: top right;
        animation: menuPopIn .35s cubic-bezier(.19, 1, .22, 1) both
    }

    @keyframes menuPopIn {
        0% {
            opacity: 0;
            transform: translateY(-8px) scale(.95)
        }

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

    .mobile-link {
        font-family: Bebas Neue, sans-serif;
        font-size: 1.35rem;
        color: var(--text-primary);
        letter-spacing: .06em;
        cursor: pointer;
        background: none;
        border: none;
        transition: all .25s ease;
        text-decoration: none;
        width: 100%;
        text-align: left;
        padding: 4px 0
    }

    .mobile-link:hover {
        color: var(--accent-light);
        transform: translate(6px)
    }

    .mobile-link.active {
        color: var(--accent-light);
        padding-left: 4px
    }
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--hero-radial)
}

.hero-grid {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(rgba(74, 222, 128, var(--grid-opacity)) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 222, 128, var(--grid-opacity)) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: gridMove 25s linear infinite
}

@keyframes gridMove {
    to {
        background-position: 70px 70px
    }
}

.hero-3d-wrap {
    position: absolute;
    top: 46%;
    left: 58%;
    transform: translate(-50%, -50%);
    width: clamp(280px, 50vw, 650px);
    height: clamp(280px, 50vw, 650px);
    animation: floatRing 8s ease-in-out infinite;
    z-index: 1
}

@keyframes floatRing {

    0%,
    to {
        transform: translate(-50%, -50%) rotate(0)
    }

    50% {
        transform: translate(-50%, -52%) rotate(1deg)
    }
}

.hero-3d-circle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    animation: rotateRing 40s linear infinite
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg)
    }
}

.hero-3d-circle:after {
    content: "";
    position: absolute;
    top: 15%;
    right: 15%;
    bottom: 15%;
    left: 15%;
    border-radius: 50%;
    border: 1px dashed var(--border-color)
}

.hero-body-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(160px, 24vw, 300px);
    filter: drop-shadow(0 0 30px var(--glow-color));
    animation: bodyBreathe 6s ease-in-out infinite
}

@keyframes bodyBreathe {

    0%,
    to {
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.02)
    }
}

.hero-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    box-shadow: 0 0 15px #4ade80;
    animation: animateScan 5s ease-in-out infinite
}

@keyframes animateScan {
    0% {
        top: 10%;
        opacity: 0
    }

    15% {
        opacity: .9
    }

    85% {
        opacity: .9
    }

    to {
        top: 90%;
        opacity: 0
    }
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(74, 222, 128, 0);
    transform: translate(-50%, -50%);
    animation: ringpulse 3s ease-out infinite
}

.r1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s
}

.r2 {
    width: 440px;
    height: 440px;
    animation-delay: .7s
}

.r3 {
    width: 580px;
    height: 580px;
    animation-delay: 1.4s
}

@keyframes ringpulse {
    0% {
        border-color: #4ade8038;
        transform: translate(-50%, -50%) scale(.85)
    }

    70% {
        border-color: #4ade800f
    }

    to {
        border-color: #4ade8000;
        transform: translate(-50%, -50%) scale(1.15)
    }
}

.floating-badge,
.badge {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--text-primary);
    font-size: .72rem;
    font-weight: 700;
    z-index: 5;
    white-space: nowrap
}

.floating-badge {
    display: flex;
    align-items: center;
    gap: 8px
}

.floating-badge .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80
}

.badge-left {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    animation: fcfLeft 5s ease-in-out infinite
}

.floating-badges-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fcfRight 5s ease-in-out infinite
}

@keyframes fcfLeft {

    0%,
    to {
        transform: translateY(-50%)
    }

    50% {
        transform: translateY(-55%)
    }
}

@keyframes fcfRight {

    0%,
    to {
        transform: translateY(-50%)
    }

    50% {
        transform: translateY(-45%)
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        padding-bottom: 5vh
    }

    .hero-3d-wrap {
        left: 50% !important
    }

    .badge-left {
        position: static;
        transform: none;
        margin: 1rem clamp(1.5rem, 5vw, 5rem) .5rem;
        align-self: flex-start;
        animation: none
    }

    .floating-badges-right {
        position: static;
        transform: none;
        flex-direction: row;
        gap: 1rem;
        margin: .5rem clamp(1.5rem, 5vw, 5rem) 1.5rem;
        align-self: flex-start;
        animation: none
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 5rem)
}

.hero-subtitle {
    position: relative;
    font-size: clamp(.85rem, 1.25vw, 1.15rem);
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 12px
}

.giant-heading {
    font-family: Bebas Neue, sans-serif;
    font-size: clamp(3.8rem, 9.5vw, 9rem);
    line-height: .9;
    color: var(--text-primary);
    letter-spacing: -.01em;
    margin: 0 0 .2em
}

.giant-heading .green {
    background: linear-gradient(to right, #4ade80, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.giant-heading .outline {
    -webkit-text-stroke: 1.5px var(--border-hover);
    color: transparent
}

.hero-bottom-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    width: 100%
}

.hero-bottom-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px
}

.hero-description {
    color: var(--text-secondary);
    font-size: clamp(.95rem, 1.15vw, 1.1rem);
    line-height: 1.6
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center
}

.mq {
    display: flex;
    white-space: nowrap;
    gap: 0
}

.mq1 {
    transform: translate(0)
}

.mq2 {
    transform: translate(-35%)
}

.mi {
    font-family: Bebas Neue, sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 6.5rem);
    color: var(--border-hover);
    letter-spacing: .04em;
    padding: 0 2rem;
    white-space: nowrap
}

.mi.hi {
    color: var(--accent-light);
    opacity: .65
}

.mi.ou {
    -webkit-text-stroke: 1.5px var(--text-muted);
    color: transparent
}

.tline {
    overflow: hidden;
    margin-bottom: .3rem;
    padding: .08em 0
}

.tword {
    display: block
}

.partners-wrap {
    background: var(--partners-bg);
    padding: 2.2rem 0;
    border-top: 1px solid var(--partners-border);
    border-bottom: 1px solid var(--partners-border);
    overflow: hidden;
    transition: background .4s, border-color .4s
}

.partners-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 6rem);
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem
}

.partner-logo {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.35rem;
    color: var(--text-muted);
    letter-spacing: .15em;
    transition: color .3s;
    cursor: default
}

.partner-logo:hover {
    color: var(--accent-light)
}

.section-wrap {
    padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 5rem);
    position: relative;
    transition: background .4s;
    overflow: hidden;
    background: var(--bg-primary)
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto
}

.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-eyebrow:before {
    content: "";
    flex: 0 0 30px;
    height: 1px;
    background: var(--accent-light)
}

.section-h2 {
    font-family: Bebas Neue, sans-serif;
    font-size: clamp(3rem, 5.5vw, 6rem);
    color: var(--text-primary);
    line-height: .95;
    letter-spacing: .02em;
    margin-bottom: 2rem
}

.section-h2 .green {
    color: var(--accent-light)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }
}

.about-img-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4/3
}

.about-img-main {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px #0000004d;
    transition: transform .5s ease
}

.about-img-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid var(--accent-light);
    box-shadow: 0 15px 30px #22c55e4d;
    transition: transform .5s ease
}

.about-img-frame:hover .about-img-main {
    transform: translateY(-5px) scale(1.02)
}

.about-img-frame:hover .about-img-overlay {
    transform: translate(5px, -5px) scale(1.05)
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center
}

@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }
}

.why-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px #0003;
    aspect-ratio: 4/5
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.why-img-wrap:hover .why-img {
    transform: scale(1.03)
}

.why-overlay-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: #080f08d9;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-hover);
    padding: 1.25rem 1.5rem;
    border-radius: 4px
}

.why-overlay-badge-title {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.25rem;
    color: var(--accent-light);
    letter-spacing: .05em;
    margin-bottom: .25rem
}

.why-overlay-badge-text {
    font-size: .78rem;
    color: var(--text-secondary);
    line-height: 1.4
}

.why-benefit-card {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all .3s
}

.why-benefit-card:hover {
    border-color: var(--border-hover);
    transform: translate(5px)
}

.why-benefit-icon {
    font-size: 2rem;
    line-height: 1
}

.why-benefit-title {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.45rem;
    color: var(--text-primary);
    letter-spacing: .02em;
    margin-bottom: .5rem
}

.why-benefit-desc {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.5
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px #00000026
}

.team-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform .6s ease
}

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

.team-info {
    padding: 1.75rem
}

.team-name {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    letter-spacing: .03em;
    margin-bottom: .25rem
}

.team-role {
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem
}

.team-desc {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem
}

.team-link {
    font-size: .85rem;
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
    min-height: 40px
}

.team-link:hover {
    color: var(--accent-light)
}

.pricing-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 3.5rem;
    line-height: 1.6
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all .3s
}

.price-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary)
}

.price-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-light);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s
}

.price-card:hover:after {
    transform: scaleY(1)
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem
}

.price-title {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.65rem;
    color: var(--text-primary);
    letter-spacing: .02em;
    max-width: 75%;
    line-height: 1.1
}

.price-duration {
    font-size: .72rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: .12em;
    background: var(--sum-bg);
    padding: 4px 8px;
    border-radius: 2px
}

.price-val {
    font-family: Bebas Neue, sans-serif;
    font-size: 2.6rem;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1rem
}

.price-desc {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem
}

.price-btn {
    width: 100%;
    border: 1px solid var(--border-hover);
    background: transparent;
    color: var(--accent-color);
    padding: 12px;
    border-radius: 2px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: all .2s;
    min-height: 48px
}

.price-card:hover .price-btn {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff
}

.booking-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 6px;
    padding: clamp(1.25rem, 5vw, 4.5rem);
    margin-top: 3.5rem;
    box-shadow: 0 30px 60px #0000001a;
    position: relative
}

.booking-steps-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    position: relative
}

.booking-steps-line {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1
}

.booking-steps-progress {
    position: absolute;
    top: 16px;
    left: 0;
    height: 2px;
    background: var(--accent-light);
    z-index: 2;
    transition: width .4s ease
}

.booking-step-node {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default
}

.bs-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    transition: all .3s
}

.booking-step-node.active .bs-num {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px var(--glow-color)
}

.booking-step-node.completed .bs-num {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff
}

.bs-lbl {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    font-weight: 700
}

.booking-step-node.active .bs-lbl {
    color: var(--accent-color)
}

@media (max-width: 600px) {
    .booking-step-node .bs-lbl {
        display: none !important
    }

    .booking-step-node .bs-num {
        width: 30px;
        height: 30px;
        font-size: .8rem
    }

    .booking-steps-line,
    .booking-steps-progress {
        top: 14px
    }

    .booking-steps-bar {
        margin-bottom: 2rem
    }
}

.mobile-step-title {
    display: none
}

@media (max-width: 600px) {
    .mobile-step-title {
        display: block !important
    }
}

.booking-instruction {
    background: var(--sum-bg);
    border-left: 3px solid var(--accent-color);
    padding: 1rem 1.5rem;
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    border-radius: 0 4px 4px 0
}

.booking-error-msg {
    background: #ef444414;
    border-left: 3px solid #ef4444;
    padding: .85rem 1.25rem;
    font-size: .82rem;
    color: #fca5a5;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0
}

.booking-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem
}

@media (max-width:900px) {
    .booking-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

.form-label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700
}

.form-select-card {
    border: 1px solid var(--border-color);
    background: var(--input-bg);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    margin-bottom: .85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all .2s;
    min-height: 48px
}

.form-select-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary)
}

.form-select-card.active {
    border-color: var(--accent-color);
    background: var(--sum-bg)
}

.fsc-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-primary)
}

.fsc-meta {
    font-size: .75rem;
    color: var(--accent-color);
    font-weight: 500
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: .65rem;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px
}

.ts-button {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: .75rem;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    transition: all .2s;
    min-height: 44px
}

.ts-button:hover {
    border-color: var(--border-hover);
    color: var(--text-primary)
}

.ts-button.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 10px var(--glow-color)
}

.form-input-text {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: .88rem;
    outline: none;
    font-family: inherit;
    transition: border-color .2s;
    min-height: 44px
}

.form-input-text:focus {
    border-color: var(--accent-color)
}

.form-textarea {
    min-height: 100px;
    resize: vertical
}

.form-row-responsive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem
}

@media (max-width: 600px) {
    .form-row-responsive {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem
    }
}

.summary-box {
    background: var(--sum-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem
}

.sum-title {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.5rem;
    letter-spacing: .03em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: .75rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary)
}

.sum-item {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    margin-bottom: 1rem;
    color: var(--text-secondary)
}

.sum-lbl {
    color: var(--text-muted)
}

.sum-val {
    color: var(--text-primary);
    font-weight: 700;
    text-align: right
}

.sum-total {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    margin-top: 1.25rem
}

.booking-ctrls {
    display: flex;
    justify-content: space-between;
    margin-top: 3.5rem
}

@media (max-width: 600px) {
    .booking-ctrls {
        margin-top: 2rem
    }
}

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin .8s linear infinite;
    margin-left: 8px;
    vertical-align: middle
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem
}

.payment-badge {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: background .4s, border-color .4s
}

.payment-badge span {
    font-size: 1.2rem
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem
}

.youtube-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    position: relative
}

.youtube-card:hover {
    border-color: var(--border-hover);
    transform: scale(1.01)
}

.yt-thumb-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.yt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    transition: opacity .3s
}

.youtube-card:hover .yt-img {
    opacity: .6
}

.play-btn-overlay {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--play-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all .3s;
    box-shadow: 0 0 20px #16a34a4d
}

.youtube-card:hover .play-btn-overlay {
    transform: scale(1.1);
    background: var(--accent-light)
}

.yt-info {
    padding: 1.25rem 1.5rem
}

.yt-category {
    font-size: .65rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: .5rem
}

.yt-title {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.35rem;
    color: var(--text-primary);
    letter-spacing: .02em
}

.video-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #030503f2;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.vm-content {
    width: 100%;
    max-width: 960px;
    position: relative;
    border: 1px solid var(--border-hover);
    box-shadow: 0 0 50px var(--glow-color)
}

.vm-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color .2s;
    min-height: 48px;
    min-width: 48px
}

.vm-close:hover {
    color: var(--accent-light)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    margin-top: 3.5rem
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }
}

.c-item {
    margin-bottom: 2rem
}

.c-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-muted);
    margin-bottom: 6px
}

.c-val {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500
}

.c-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0
}

.footer {
    background: var(--footer-bg);
    padding: 4.5rem clamp(1.5rem, 5vw, 5rem) 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    transition: background .4s
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

@media (max-width:768px) {
    .f-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

.f-desc {
    color: #fff6;
    font-size: .88rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 320px
}

.f-h {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #ffffff80;
    margin-bottom: 1.25rem
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.f-links li {
    color: #ffffff80;
    font-size: .85rem;
    cursor: pointer;
    transition: color .2s
}

.f-links li:hover {
    color: #4ade80
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: #ffffff4d
}

#home {
    z-index: 1;
    position: relative
}

#s2 {
    z-index: 10;
    position: relative;
    height: 100vh;
    overflow: hidden
}

.s2-bg-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden
}

.s2-bg-img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center
}

.s2-h-mask {
    overflow: hidden;
    margin-bottom: .2rem
}

.s2-title-word {
    font-family: Bebas Neue, sans-serif;
    font-size: clamp(3.2rem, 7.5vw, 7.5rem);
    color: #fff;
    line-height: .95;
    letter-spacing: .02em;
    display: inline-block
}

.s2-title-word.green {
    color: var(--accent-light)
}

#s3,
#about {
    z-index: 1;
    position: relative
}

.panel-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10
}

#s5 {
    position: relative;
    width: 100%;
    min-height: 85vh;
    z-index: 1;
    overflow: hidden;
    margin: 0 !important
}

#s6 {
    position: relative;
    width: 100%;
    min-height: 75vh;
    z-index: 1;
    overflow: hidden;
    margin: 0 !important;
    background-color: #f7faf6
}

.light-panel-section {
    position: relative !important;
    height: auto !important;
    min-height: 75vh !important;
    z-index: 1 !important;
    background-color: #f7faf6 !important
}

.performance-section {
    position: relative !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 85vh;
    background-color: #000 !important;
    z-index: 10;
    margin: 0 auto;
    top: auto !important;
    bottom: auto !important
}

#services {
    z-index: 50;
    position: relative;
    background: var(--bg-secondary)
}

#why-us {
    z-index: 50;
    position: relative;
    background: var(--bg-primary)
}

#team {
    z-index: 50;
    position: relative;
    background: var(--bg-secondary)
}

#pricing {
    z-index: 50;
    position: relative;
    background: var(--bg-primary)
}

#booking-section {
    z-index: 50;
    position: relative;
    background: var(--bg-secondary)
}

#videos {
    z-index: 50;
    position: relative;
    background: var(--bg-primary)
}

#testimonials {
    z-index: 50;
    position: relative;
    background: var(--bg-secondary)
}

#payments {
    z-index: 50;
    position: relative;
    background: var(--bg-primary)
}

#contact {
    z-index: 50;
    position: relative;
    background: var(--bg-secondary)
}

.footer {
    z-index: 50;
    position: relative
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3.5rem auto 0;
    padding: 1rem 0
}

.timeline:after {
    content: "";
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px
}

@media (max-width: 768px) {
    .timeline:after {
        left: 31px
    }
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%
}

.timeline-item:after {
    content: "✦";
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-primary);
    border: 2px solid var(--accent-light);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--accent-light)
}

.timeline-left {
    left: 0;
    text-align: right
}

.timeline-right {
    left: 50%
}

.timeline-right:after {
    left: -10px
}

@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left
    }

    .timeline-item:after {
        left: 21px
    }

    .timeline-right {
        left: 0%
    }
}

.timeline-content {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    border-radius: 4px
}

.timeline-year {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.75rem;
    color: var(--accent-light);
    margin-bottom: .5rem;
    letter-spacing: .05em
}

.timeline-h3 {
    font-family: Bebas Neue, sans-serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: .5rem;
    letter-spacing: .02em
}

.timeline-p {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.5
}

.faq-accordion {
    max-width: 900px;
    margin: 4.5rem auto 0
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
    cursor: pointer
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Bebas Neue, sans-serif;
    font-size: 1.35rem;
    color: var(--text-primary);
    letter-spacing: .03em;
    transition: color .2s
}

.faq-item:hover .faq-question {
    color: var(--accent-light)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out, margin-top .3s ease-out;
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.6
}

.faq-item.open .faq-answer {
    max-height: 200px;
    margin-top: 1rem
}

.faq-icon {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform .3s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-light)
}

.f-links li.active {
    color: var(--accent-light);
    font-weight: 700
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    display: none;
    grid-template-columns: 1fr 1.2fr;
    z-index: 9999;
    box-shadow: 0 -10px 30px #00000026;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    gap: 12px;
    align-items: center
}

.msb-btn-call {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Bebas Neue, sans-serif;
    font-size: 1.1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
    min-height: 48px
}

.msb-btn-book {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Bebas Neue, sans-serif;
    font-size: 1.1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    min-height: 48px;
    box-shadow: 0 4px 12px var(--glow-color)
}

.msb-btn-book:active {
    transform: scale(.98)
}

.map-link-hover {
    transition: color .2s
}

.map-link-hover:hover {
    color: var(--accent-light) !important;
    text-decoration: underline !important
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: grid
    }

    body {
        padding-bottom: 74px !important
    }
}

.floating-theme-toggle {
    position: fixed;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 24px;
    height: 48px;
    border-radius: 24px;
    cursor: pointer;
    font-family: DM Sans, sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: width .5s cubic-bezier(.19, 1, .22, 1), padding .5s cubic-bezier(.19, 1, .22, 1), background-color .3s, border-color .3s, color .3s, transform .3s, box-shadow .3s;
    overflow: hidden;
    white-space: nowrap;
    right: 32px;
    bottom: 32px;
    width: 210px;
    animation: fttPop .5s cubic-bezier(.175, .885, .32, 1.275) both
}

.theme-light .floating-theme-toggle {
    background: #f0f7f0;
    border: 1px solid rgba(74, 222, 128, .4);
    color: #0c1f0e;
    box-shadow: 0 10px 30px #00000014, 0 0 15px #22c55e26
}

.theme-light .floating-theme-toggle:hover {
    background: #e6f3e6;
    border-color: #22c55e99;
    box-shadow: 0 15px 40px #00000026, 0 0 25px #22c55e40
}

.theme-dark .floating-theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 10px 30px #0000004d, 0 0 15px var(--glow-color)
}

.theme-dark .floating-theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px #0006, 0 0 25px var(--glow-color)
}

.floating-theme-toggle:hover {
    transform: scale(1.05) translateY(-3px)
}

.floating-theme-toggle:active {
    transform: scale(.92) translateY(0);
    transition: transform .1s
}

.floating-theme-toggle.scrolled {
    width: 48px;
    padding: 0 12px
}

.floating-theme-toggle .ftt-text {
    opacity: 1;
    margin-left: 8px;
    transition: opacity .3s ease, margin-left .3s ease;
    font-weight: 800
}

.floating-theme-toggle.scrolled .ftt-text {
    opacity: 0;
    margin-left: 0
}

.floating-theme-toggle.scrolled:hover {
    width: 210px;
    padding: 0 24px
}

.floating-theme-toggle.scrolled:hover .ftt-text {
    opacity: 1;
    margin-left: 8px
}

.ftt-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

.ftt-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    animation: rotateIcon .5s ease-in-out
}

@keyframes fttPop {
    0% {
        transform: scale(0);
        opacity: 0
    }

    70% {
        transform: scale(1.1)
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@media (max-width: 768px) {
    .floating-theme-toggle {
        right: 20px;
        bottom: 90px
    }
}

.test-wrap {
    background: var(--bg-secondary);
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 4rem);
    overflow: hidden
}

.test-inner {
    max-width: 1400px;
    margin: 0 auto
}

.test-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem
}

.test-slider-wrap {
    position: relative
}

.test-big-quote {
    font-family: Bebas Neue, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: .02em;
    transition: opacity .5s, transform .5s;
    min-height: 120px
}

.test-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem
}

.test-by {
    display: flex;
    align-items: center;
    gap: 1rem
}

.test-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem
}

.test-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: .95rem
}

.test-role {
    color: var(--text-secondary);
    font-size: .8rem
}

.test-stars {
    color: #fbbf24;
    font-size: .9rem
}

.test-controls {
    display: flex;
    gap: .75rem
}

.test-btn {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.test-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff
}

.test-bar {
    height: 2px;
    background: var(--border-color);
    margin-top: 3rem;
    position: relative;
    overflow: hidden
}

.test-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-light);
    transition: width .5s cubic-bezier(.16, 1, .3, 1)
}

.s5-highlight-card {
    transition: all .4s cubic-bezier(.16, 1, .3, 1) !important
}

.s5-highlight-card:hover {
    border-color: var(--accent-light) !important;
    transform: translate(8px) translateY(-2px);
    box-shadow: 0 12px 30px #22c55e26;
    background: var(--bg-primary) !important
}

.f-social-link:hover,
.nav-social-link:hover {
    color: var(--accent-light) !important
}

.floating-whatsapp {
    position: fixed;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 10px 30px #25d36659;
    transition: transform .3s, box-shadow .3s;
    left: 32px;
    bottom: 32px
}

.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 40px #25d36680
}

.floating-whatsapp:active {
    transform: scale(.92) translateY(0)
}

@media (max-width: 768px) {
    .floating-whatsapp {
        left: 20px;
        bottom: 90px
    }
}

/* ─── Premium Scrollbar ──────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(74, 222, 128, 0.2);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* ─── Canvas Image Sequence ──────────────────────────────────────────────────── */
.canvas-sequence-container {
  position: relative;
  width: 100%;
  background: #000;
  z-index: 15;
}
.canvas-sequence-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}
.canvas-sequence-sticky canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.canvas-sequence-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.canvas-sequence-slide {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 800px;
  width: 90%;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}
.canvas-sequence-slide.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}
.canvas-sequence-slide h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
}
.canvas-sequence-slide p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ─── Canvas Preloader ──────────────────────────────────────────────────────── */
.seq-preloader {
  position: fixed;
  inset: 0;
  background: #050905;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.seq-preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.seq-preloader h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(74,222,128,0.2);
}
.seq-preloader p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.seq-preloader .loader-bar {
  width: 250px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}
.seq-preloader .loader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--accent-light);
}

/* ─── Card Stacking ─────────────────────────────────────────────────────────── */
.stacking-cards-container {
  display: flex;
  flex-direction: column;
  gap: 6vh;
  padding: 6vh 0;
}
.stacking-card {
  position: sticky;
  width: 100%;
  min-height: 380px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stacking-card:hover {
  border-color: var(--accent-light);
}

/* ─── Blur-to-Sharp Text Reveal ────────────────────────────────────────────── */
.blur-reveal {
  filter: blur(12px);
  opacity: 0;
}

/* ─── Floating WhatsApp Styling Adjustments ──────────────────────────────────── */
.floating-whatsapp svg {
  display: block;
}

/* ─── Scroll Container / Inner Adjustments ────────────────────────────────────── */
.scroll-container {
  overflow-x: hidden;
}

/* ─── Footer Layout Styles ─────────────────────────────────────────────────── */
.footer-wrap {
  background: #050905;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--border-color);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  z-index: 10;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
}
.footer-brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 360px;
  margin: 0;
}
.footer-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-links a:hover {
  color: var(--accent-light);
}
.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    margin-top: 3rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Nested Box Scroll Grid Layout ────────────────────────────────────────── */
.nested-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.nested-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.nested-box:hover {
  border-color: var(--accent-light);
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(74, 222, 128, 0.05);
}
.nested-box-inner {
  position: relative;
  z-index: 2;
}
.nested-box-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(74, 222, 128, 0.05);
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1;
  pointer-events: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.nested-box:hover .nested-box-num {
  color: rgba(74, 222, 128, 0.12);
}
.nested-box-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  color: #fff;
  line-height: 1.1;
}
.nested-box-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}