:root {
    --bg-color: #111111;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-yellow: #F4E04D;
    --accent-blue: #4D96F4;
    --accent-pink: #F44D96;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Nunito', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    cursor: none;
}

p {
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-yellow);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Preloader - Jelly Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
    position: relative;
}

.jelly-text {
    font-family: 'Bangers', cursive;
    font-size: 3.5rem;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.jelly-letter {
    display: inline-block;
    color: #ffffff;
    text-shadow:
        3px 3px 0px #4D96F4,
        6px 6px 0px #F44D96;
    animation: jellyBounce 1.5s ease-in-out 1;
    transform-origin: bottom;
}

.jelly-letter.highlight {
    color: #F4E04D;
}

/* Stagger each letter's animation */
.jelly-letter:nth-child(1) {
    animation-delay: 0s;
}

.jelly-letter:nth-child(2) {
    animation-delay: 0.1s;
}

.jelly-letter:nth-child(3) {
    animation-delay: 0.2s;
}

.jelly-letter:nth-child(4) {
    animation-delay: 0.3s;
}

.jelly-letter:nth-child(5) {
    animation-delay: 0.4s;
}

.jelly-letter:nth-child(6) {
    animation-delay: 0.5s;
}

.jelly-letter:nth-child(7) {
    animation-delay: 0.6s;
}

.jelly-letter:nth-child(8) {
    animation-delay: 0.7s;
}

.jelly-letter:nth-child(9) {
    animation-delay: 0.8s;
}

.jelly-letter:nth-child(10) {
    animation-delay: 0.9s;
}

.jelly-letter:nth-child(11) {
    animation-delay: 1s;
}

.jelly-letter:nth-child(12) {
    animation-delay: 1.1s;
}

.jelly-letter:nth-child(13) {
    animation-delay: 1.2s;
}

@keyframes jellyBounce {

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

    10% {
        transform: scaleY(1.2) scaleX(0.8) translateY(-20px);
    }

    20% {
        transform: scaleY(0.8) scaleX(1.1) translateY(0);
    }

    30% {
        transform: scaleY(1.05) scaleX(0.95) translateY(-5px);
    }

    40% {
        transform: scaleY(1) scaleX(1) translateY(0);
    }
}

/* Bot Character */
.bot-character {
    font-size: 3rem;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation: botHop 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

@keyframes botHop {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(-50%) translateY(-30px) rotate(-10deg);
    }

    50% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }

    75% {
        transform: translateX(-50%) translateY(-30px) rotate(10deg);
    }
}

/* Sparkles */
.sparkles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 1s ease-out forwards;
    opacity: 0;
}

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

    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.5);
    }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Header - Nav Links Aligned Right */
header {
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(17, 17, 17, 0.8);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: 2rem;
    font-weight: 400;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 3px 3px 0px #4D96F4, 6px 6px 0px #F44D96;
    display: inline-block;
}

.logo .letter {
    display: inline-block;
    animation: letterBounce 3s ease-in-out infinite;
}

/* Stagger the animation for each letter */
.logo .letter:nth-child(1) {
    animation-delay: 0s;
}

.logo .letter:nth-child(2) {
    animation-delay: 0.1s;
}

.logo .letter:nth-child(3) {
    animation-delay: 0.2s;
}

.logo .letter:nth-child(4) {
    animation-delay: 0.3s;
}

.logo .letter:nth-child(5) {
    animation-delay: 0.4s;
}

.logo .letter:nth-child(6) {
    animation-delay: 0.5s;
}

.logo .letter:nth-child(7) {
    animation-delay: 0.6s;
}

.logo .letter:nth-child(8) {
    animation-delay: 0.7s;
}

.logo .letter:nth-child(9) {
    animation-delay: 0.8s;
}

.logo .letter:nth-child(10) {
    animation-delay: 0.9s;
}

.logo .highlight .letter:nth-child(1) {
    animation-delay: 1s;
}

.logo .highlight .letter:nth-child(2) {
    animation-delay: 1.1s;
}

.logo .highlight .letter:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes letterBounce {

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

    5% {
        transform: translateY(-8px);
    }

    10% {
        transform: translateY(0);
    }
}

.logo:hover {
    transform: scale(1.05);
}

.logo .highlight {
    color: #F4E04D;
    text-shadow: 3px 3px 0px #4D96F4, 6px 6px 0px #F44D96;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    font-family: 'Fredoka', cursive;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--accent-yellow), #FFD700);
    color: var(--bg-color);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    box-shadow: 0 6px 0 #d4b700, 0 10px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', cursive;
    letter-spacing: 0.5px;
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #d4b700, 0 5px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #d4b700, inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-button.small {
    padding: 8px 20px;
}

.cta-button.large {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
    animation: slideInLeft 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

/* OUTLINED HERO TITLE - Cartoonish! */
.hero-title {
    font-size: 6.5rem;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -3px;
    font-weight: 800;
    animation: gentleBounce 3s ease-in-out infinite;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-color);
}

@keyframes gentleBounce {

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

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

.animated-text {
    -webkit-text-stroke: 2px var(--accent-blue);
    animation: strokePulse 4s ease infinite;
}

@keyframes strokePulse {

    0%,
    100% {
        -webkit-text-stroke: 2px var(--accent-blue);
    }

    50% {
        -webkit-text-stroke: 2.5px var(--accent-pink);
    }
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 85%;
    line-height: 1.6;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    width: 40%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spinSlow 25s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: floatSmooth 5s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(77, 150, 244, 0.4);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.08);
}

@keyframes floatSmooth {

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

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

.glowing-orb-behind {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-blue), var(--accent-pink), transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(60px);
    z-index: 1;
    animation: pulseGlow 5s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatCard 6s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.floating-card .icon {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.floating-card .text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.floating-card:hover {
    transform: scale(1.12) translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(77, 150, 244, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.floating-card:hover .icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2) rotate(-10deg);
    }

    75% {
        transform: scale(1.2) rotate(10deg);
    }
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

/* Floating card positions - Balanced layout */
.card-1 {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    left: -8%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: -5%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 20%;
    right: -10%;
    animation-delay: 4.5s;
}

.card-5 {
    top: 50%;
    left: -12%;
    animation-delay: 2s;
}

.card-6 {
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.card-7 {
    bottom: 8%;
    right: 5%;
    animation-delay: 3.5s;
}

.card-8 {
    top: 60%;
    left: -15%;
    animation-delay: 2.5s;
}

/* Marquee */
.marquee-container {
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink), var(--accent-blue), var(--accent-yellow));
    background-size: 300% 100%;
    color: var(--bg-color);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-1.5deg) scale(1.03);
    margin: 50px 0;
    animation: gradientShift 6s ease infinite;
    box-shadow: 0 8px 25px rgba(244, 224, 77, 0.2);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 20px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features Section */
.features {
    padding: 100px 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    /* Revert to hollow style */
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-color);
    font-family: 'Fredoka', cursive;
    text-shadow: none;
    /* Remove the shadow we added */
}

.section-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 150, 244, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(77, 150, 244, 0.2);
}

.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconFloat 3s ease infinite;
}

.feature-card:hover .icon-wrapper {
    animation: iconSpin 0.6s ease;
}

@keyframes iconFloat {

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

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

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Fredoka', cursive;
    -webkit-text-stroke: 0;
}

.feature-card p {
    font-family: 'Nunito', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Fixed Sticky Note - Right Side */
.fixed-sticky-note {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(2deg);
    transform-origin: top center;
    /* Swing from the pin point */
    width: 280px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 35px 20px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: box-shadow 0.3s ease;
    /* Only transition shadow, not transform */
    animation: stickyFloat 6s ease-in-out infinite;
}

@keyframes stickyFloat {

    0%,
    100% {
        transform: translateY(-50%) rotate(2deg);
    }

    50% {
        transform: translateY(-52%) rotate(1deg);
    }
}

.fixed-sticky-note:hover {
    transform: translateY(-50%) rotate(0deg) scale(1.05);
    box-shadow: 0 20px 45px rgba(77, 150, 244, 0.3);
}

/* Pin at top */
.pin-top {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #ff6b6b, #c92a2a);
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.pin-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

/* Sticky note slides */
.sticky-note-slides {
    position: relative;
    min-height: 220px;
}

.sticky-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.sticky-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-badge {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--bg-color);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Fredoka', cursive;
}

.sticky-slide .icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    animation: iconFloat 3s ease infinite;
}

.sticky-slide h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Fredoka', cursive;
    line-height: 1.3;
}

.sticky-slide p {
    font-family: 'Nunito', sans-serif;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Sticky dots */
.sticky-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.sticky-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--card-border);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sticky-dots .dot:hover {
    background: var(--accent-blue);
    transform: scale(1.3);
}

.sticky-dots .dot.active {
    background: var(--accent-yellow);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--accent-yellow);
}

/* How It Works */
.how-it-works {
    padding: 100px 10%;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink), var(--accent-blue));
    z-index: 0;
    animation: lineGlow 4s ease infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.step {
    position: relative;
    z-index: 1;
    background: transparent;
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(5px);
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-pink);
    margin-bottom: 20px;
    background: var(--bg-color);
    display: inline-block;
    padding: 0 10px;
    transition: all 0.3s ease;
    animation: numberFloat 4s ease infinite;
}

.step:hover .step-number {
    -webkit-text-stroke: 2px var(--accent-blue);
    transform: scale(1.1);
}

@keyframes numberFloat {

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

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

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step p {
    font-family: 'Nunito', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 50px 10%;
    border-top: 1px solid var(--card-border);
    text-align: center;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    padding: 100px 10%;
}

.pricing-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--accent-yellow);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 450px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(244, 224, 77, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(244, 224, 77, 0.4);
    border-color: var(--accent-blue);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-yellow), #FFD700);
    color: var(--bg-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(244, 224, 77, 0.4);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-color);
}

.price {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-top: 10px;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 15px;
}

.pricing-description {
    font-family: 'Nunito', sans-serif;
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.pricing-note {
    font-family: 'Nunito', sans-serif;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        width: 100%;
        height: 300px;
    }

    .nav-links {
        display: none;
    }

    .steps-container {
        flex-direction: column;
    }

    .steps-container::before {
        display: none;
    }

    .fixed-sticky-note {
        right: 10px;
        width: 240px;
        padding: 30px 15px 15px;
    }

    .sticky-note-slides {
        min-height: 200px;
    }

    .sticky-slide h3 {
        font-size: 1.1rem;
    }

    .sticky-slide p {
        font-size: 0.85rem;
    }

    .sticky-slide .icon-wrapper {
        font-size: 2rem;
    }
}