.elementor-11906 .elementor-element.elementor-element-b8784a6{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11906 .elementor-element.elementor-element-2daf6c7{width:100%;max-width:100%;}.elementor-11906 .elementor-element.elementor-element-2daf6c7 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-11906 .elementor-element.elementor-element-2daf6c7.elementor-element{--flex-grow:1;--flex-shrink:0;}@media(min-width:768px){.elementor-11906 .elementor-element.elementor-element-b8784a6{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-2daf6c7 */*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    --bg: hsl(220 20% 4%);
    --fg: hsl(0 0% 98%);
    --card: hsl(220 20% 8%);
    --card-fg: hsl(0 0% 98%);
    --primary: hsl(165 80% 50%);
    --primary-fg: hsl(220 20% 4%);
    --secondary: hsl(280 70% 60%);
    --secondary-fg: hsl(0 0% 98%);
    --muted: hsl(220 15% 15%);
    --muted-fg: hsl(220 10% 60%);
    --accent: hsl(35 100% 60%);
    --accent-fg: hsl(220 20% 4%);
    --border: hsl(220 15% 18%);
    --radius: 0.75rem;
    --gradient-primary: linear-gradient(135deg, hsl(165 80% 50%), hsl(200 80% 50%));
    --gradient-secondary: linear-gradient(135deg, hsl(280 70% 60%), hsl(320 70% 60%));
    --gradient-accent: linear-gradient(135deg, hsl(35 100% 60%), hsl(15 100% 60%));
    --gradient-mesh: radial-gradient(at 40% 20%, hsl(165 80% 50% / 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsl(280 70% 60% / 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsl(35 100% 60% / 0.2) 0px, transparent 50%);
    --glass-bg: hsl(220 20% 8% / 0.7);
    --glass-border: hsl(0 0% 100% / 0.1);
    --shadow-glow: 0 0 20px hsl(165 80% 50% / 0.13);
    --shadow-card: 0 25px 50px -12px hsl(0 0% 0% / 0.5);
}

body {
    background: var(--bg) !important;
    color: var(--fg) !important;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
}

/* ===== UTILITIES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-mesh {
    background: var(--gradient-mesh);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.neumorphic {
    background: hsl(220 20% 10%);
    box-shadow: 8px 8px 16px hsl(220 20% 5%), -8px -8px 16px hsl(220 20% 15%);
}

.neumorphic-inset {
    box-shadow: inset 4px 4px 8px hsl(220 20% 5%), inset -4px -4px 8px hsl(220 20% 15%);
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header h2 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--muted-fg);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i,
.icon-box svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px hsl(165 80% 50% / 0.3);
    }

    50% {
        box-shadow: 0 0 40px hsl(165 80% 50% / 0.6);
    }
}

@keyframes fade-in-up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-bounce {
    animation: bounce 1s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem;
    background: var(--gradient-mesh);
    overflow: hidden;
}

.hero .blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero .blob-1 {
    top: 25%;
    left: 25%;
    background: hsl(165 80% 50% / 0.2);
}

.hero .blob-2 {
    bottom: 25%;
    right: 25%;
    background: hsl(280 70% 60% / 0.2);
    animation-delay: 0.3s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
}

.hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(165 80% 50% / 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--muted-fg);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.hero .cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-fg);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.hero .cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.hero .cta svg {
    width: 1.25rem;
    height: 1.25rem;
}


#f11 .carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    cursor: grab;
    padding-top: 20px;
}

#f11 .carousel-track:active {
    cursor: grabbing;
}

#f11 .carousel-card {
    flex-shrink: 0;
    width: 16rem;
    height: 10rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#f11 .carousel-card .color-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#f11 .carousel-card .color-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

#f11 .carousel-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}/* End custom CSS */