/* ===================================
   MR. SUCKER - VACUPOP STYLE
   Pastel 80s + Neon Gradients
   Version 1.0
   =================================== */

:root {
    /* Pastel 80s Colors */
    --pastel-pink: #FFB3D9;
    --pastel-purple: #D4A5FF;
    --pastel-blue: #A5D8FF;
    --pastel-cyan: #7FFFD4;
    --pastel-yellow: #FFF4A3;
    --pastel-peach: #FFCBA4;
    --pastel-mint: #B4F8C8;

    /* Neon Colors */
    --neon-pink: #FF10F0;
    --neon-cyan: #00F0FF;
    --neon-purple: #B026FF;
    --neon-yellow: #FFD700;
    --neon-green: #39FF14;
    --neon-orange: #FF6B35;

    /* Light Theme Colors */
    --bg-light: #FAFAFA;
    --bg-cream: #FFF5F5;
    --bg-white: #FFFFFF;
    --text-dark: #2D1B4E;
    --text-medium: #5A4A7A;
    --text-light: #8B7BA8;

    /* Fonts */
    --font-main: 'Poppins', sans-serif;
}

.mr-sucker-template,
.mr-sucker-template * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mr-sucker-template {
    font-family: var(--font-main);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple)) 1;
    box-shadow: 0 2px 20px rgba(255, 16, 240, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-name {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.tagline {
    font-size: 0.8rem;
    color: var(--neon-purple);
    margin: 0;
    font-weight: 600;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--neon-pink);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    color: var(--bg-white) !important;
    box-shadow: 0 3px 15px rgba(255, 16, 240, 0.3);
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 16, 240, 0.5);
}

.nav-contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-right: 0.5rem;
    border-left: 2px solid rgba(0, 240, 255, 0.2);
    padding-left: 1rem;
    margin-left: 0.5rem;
}

.nav-contact-item {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 !important;
    line-height: 1.2;
}

.nav-contact-item i {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    width: 14px;
    text-align: center;
}

.nav-contact-item:hover {
    color: var(--neon-pink) !important;
}

.nav-contact-item::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border: none;
    cursor: pointer;
    padding: 0.7rem;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 16, 240, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    box-shadow: 0 6px 20px rgba(255, 16, 240, 0.5);
    transform: translateY(-2px);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   NEON TEXT EFFECTS
   =================================== */

.neon-text {
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Removed neon-glow from hero title */

/* ===================================
   HERO SECTION
   =================================== */

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            #A5D8FF 0%,
            #D4A5FF 35%,
            #FFB3D9 65%,
            #FFF4A3 100%);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-creative {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.8);
    max-width: none;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 500px;
    font-weight: 500;
}

.hero-availability {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(176, 38, 255, 0.25);
    border-radius: 18px;
    color: var(--text-dark);
    font-weight: 600;
    max-width: 540px;
    box-shadow: 0 8px 30px rgba(176, 38, 255, 0.12);
}

.hero-availability i {
    color: var(--neon-orange);
    margin-top: 0.15rem;
}

.hero-contact-quick {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-contact-quick a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-purple);
}

.hero-contact-quick a:hover {
    background: var(--neon-purple);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 16, 240, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 16, 240, 0.6);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--neon-purple);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--neon-purple);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(176, 38, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--neon-purple);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(176, 38, 255, 0.4);
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.sucker-machine-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(255, 16, 240, 0.3));
}

.hero-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box, linear-gradient(135deg, var(--neon-pink), var(--neon-cyan)) border-box;
}

.hero-video-wrapper video,
.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: auto;
}

.hero-callouts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.hero-callout {
    position: absolute;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 16, 240, 0.25);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.12);
    white-space: nowrap;
}

.hero-callout-1 {
    top: 18%;
    right: 10%;
}

.hero-callout-2 {
    top: 48%;
    left: -3%;
}

.hero-callout-3 {
    bottom: 18%;
    right: 5%;
}

.hero-callout-4 {
    bottom: 10%;
    left: 4%;
}

@keyframes float {

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

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

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

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

/* ===================================
   MASTER MESSAGE
   =================================== */

.master-message {
    padding: 5rem 0;
    background: linear-gradient(180deg,
            rgba(255, 244, 163, 0.2),
            rgba(255, 203, 164, 0.2));
}

.message-box {
    text-align: center;
    padding: 3rem;
    background: var(--bg-white);
    box-shadow: 0 10px 40px rgba(255, 16, 240, 0.15);
}

.message-box h3 {
    font-size: 1.5rem;
    color: var(--neon-orange);
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 700;
}

.big-claim {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
}

.value-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.neon-border {
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple)) 1;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: var(--bg-white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 16, 240, 0.25);
}

.gradient-card-1 {
    background: linear-gradient(135deg, rgba(255, 179, 217, 0.3), rgba(212, 165, 255, 0.3));
    border-color: var(--neon-pink);
}

.gradient-card-1::before {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
}

.gradient-card-2 {
    background: linear-gradient(135deg, rgba(165, 216, 255, 0.3), rgba(127, 255, 212, 0.3));
    border-color: var(--neon-cyan);
}

.gradient-card-2::before {
    background: linear-gradient(135deg, var(--neon-cyan), var(--pastel-blue));
}

.gradient-card-3 {
    background: linear-gradient(135deg, rgba(180, 248, 200, 0.3), rgba(127, 255, 212, 0.3));
    border-color: var(--neon-green);
}

.gradient-card-3::before {
    background: linear-gradient(135deg, var(--neon-green), var(--pastel-mint));
}

.gradient-card-4 {
    background: linear-gradient(135deg, rgba(255, 244, 163, 0.3), rgba(255, 203, 164, 0.3));
    border-color: var(--neon-yellow);
}

.gradient-card-4::before {
    background: linear-gradient(135deg, var(--neon-yellow), var(--pastel-peach));
}

.gradient-card-5 {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25), rgba(0, 240, 255, 0.25));
    border-color: var(--neon-orange);
}

.gradient-card-5::before {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-cyan));
}

.gradient-card-6 {
    background: linear-gradient(135deg, rgba(212, 165, 255, 0.3), rgba(165, 216, 255, 0.3));
    border-color: var(--neon-purple);
}

.gradient-card-6::before {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
}

.badge {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.btn-card {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: var(--text-dark);
    border: 3px solid var(--text-dark);
    border-radius: 25px;
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(45, 27, 78, 0.3);
}

.btn-card:hover {
    background: transparent;
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(45, 27, 78, 0.4);
}

/* ===================================
   HOW IT WORKS
   =================================== */

.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg,
            rgba(165, 216, 255, 0.15),
            rgba(212, 165, 255, 0.15));
}

.process-timeline-simple {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 960px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline-simple::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    bottom: 0.75rem;
    left: 2.7rem;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple));
    opacity: 0.35;
}

.process-step-large {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1.5rem;
    align-items: start;
    position: relative;
    padding: 0 0 2.5rem;
    text-align: left;
    background: transparent;
    border-radius: 0;
    transition: none;
    box-shadow: none;
    border: none;
}

.process-step-large:last-child {
    padding-bottom: 0;
}

.process-step-large:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.step-marker {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.step-number-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-white);
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    background-clip: border-box;
    border-radius: 50%;
    margin-bottom: 0;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(255, 16, 240, 0.2);
}

.step-content {
    padding-top: 0.45rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(176, 38, 255, 0.16);
}

.process-step-large:last-child .step-content {
    padding-bottom: 0;
    border-bottom: none;
}

.step-phase {
    margin: 0 0 0.5rem;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
}

.process-step-large h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step-large p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.step-details li {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(176, 38, 255, 0.15);
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   DELIVERABLES
   =================================== */

.deliverables {
    padding: 5rem 0;
    background: var(--bg-white);
}

.deliverables-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.6fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.deliverables-intro {
    position: sticky;
    top: 6rem;
}

.deliverables-lead {
    font-size: 2rem;
    line-height: 1.25;
    color: var(--text-dark);
    font-weight: 700;
}

.deliverables-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
}

.deliverable-item {
    background: transparent;
    padding: 0 0 1.5rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(176, 38, 255, 0.16);
    transition: none;
    box-shadow: none;
}

.deliverable-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.deliverable-item:hover {
    border-color: rgba(176, 38, 255, 0.16);
    transform: none;
    box-shadow: none;
}

.deliverable-head {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: center;
}

.deliverable-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
    margin-bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    color: var(--bg-white);
}

.deliverable-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.deliverable-item ul {
    list-style: none;
    display: grid;
    gap: 0.75rem 1.5rem;
    padding: 0;
    padding-left: 4.5rem;
}

.deliverable-item li {
    padding: 0 0 0 1.1rem;
    position: relative;
    color: var(--text-medium);
}

.deliverable-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: 900;
}

/* ===================================
   TARGET AUDIENCE
   =================================== */

.target-audience {
    padding: 5rem 0;
    background: linear-gradient(180deg,
            rgba(255, 244, 163, 0.15),
            rgba(180, 248, 200, 0.15));
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
}

.audience-row {
    background: var(--bg-white);
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) 1.35fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    border-radius: 24px;
    border-left: 6px solid var(--neon-pink);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.audience-row:nth-child(2) {
    border-left-color: var(--neon-cyan);
}

.audience-row:nth-child(3) {
    border-left-color: var(--neon-green);
}

.audience-row:nth-child(4) {
    border-left-color: var(--neon-purple);
}

.audience-row:nth-child(5) {
    border-left-color: var(--neon-yellow);
}

.audience-row:hover {
    background: var(--bg-white);
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 16, 240, 0.2);
}

.audience-label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.audience-label h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.audience-icon {
    font-size: 1.4rem;
    color: var(--neon-pink);
}

.audience-need {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
    font-weight: 600;
}

.audience-benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.audience-benefits span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(165, 216, 255, 0.2);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===================================
   WHY US
   =================================== */

.why-us {
    padding: 5rem 0;
    background: linear-gradient(180deg,
            rgba(212, 165, 255, 0.15),
            rgba(255, 179, 217, 0.15));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
    margin-top: 3rem;
}

.why-item {
    text-align: left;
    padding: 0 0 1.25rem;
    background: transparent;
    border-radius: 0;
    transition: none;
    border: none;
    border-bottom: 1px solid rgba(176, 38, 255, 0.16);
    box-shadow: none;
}

.why-item:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(176, 38, 255, 0.16);
}

.why-heading {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: var(--bg-white);
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    background-clip: border-box;
    border-radius: 50%;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.why-item p {
    font-size: 1rem;
    color: var(--text-medium);
    padding-left: 4.5rem;
}

/* ===================================
   CONTACT
   =================================== */

.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg,
            rgba(165, 216, 255, 0.2),
            rgba(212, 165, 255, 0.2),
            rgba(255, 179, 217, 0.2));
}

.contact-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-section-header {
    margin-bottom: 1.25rem;
}

.contact-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-info .big-text {
    font-size: 2.25rem;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(255, 16, 240, 0.2);
}

.contact-info>p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    max-width: 34rem;
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 16, 240, 0.18);
    border-radius: 18px;
    color: var(--text-dark) !important;
    font-size: 1rem !important;
    font-weight: 600;
}

.contact-alert i {
    color: var(--neon-orange);
    margin-top: 0.2rem;
}

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

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-method .icon {
    font-size: 2rem;
}

.contact-method h4 {
    font-size: 1.1rem;
    color: var(--neon-purple);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-method p {
    color: var(--text-medium);
}

.contact-method a {
    color: var(--neon-pink);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--neon-cyan);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border: 2px solid rgba(176, 38, 255, 0.18);
    border-image: none;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(255, 16, 240, 0.16);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-light);
    border: 2px solid var(--pastel-purple);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(255, 16, 240, 0.1);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-check input {
    width: auto;
    margin-top: 0.35rem;
    accent-color: var(--neon-pink);
}

.form-check label {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.form-status {
    min-height: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
    font-weight: 700;
}

.form-status.is-success {
    color: var(--neon-green);
}

.contact-form .btn-primary {
    width: auto;
    min-width: 220px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--text-dark);
    padding: 3rem 0 1rem;
    border-top: 5px solid;
    border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple)) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.footer-brand p {
    color: var(--pastel-cyan);
    margin-bottom: 0.5rem;
}

.footer-claim {
    color: var(--pastel-pink);
    font-weight: 700;
    font-style: italic;
}

/* Visual Examples Section */
.visual-examples {
    padding: 5rem 0;
    background: linear-gradient(135deg,
            rgba(255, 244, 163, 0.15) 0%,
            rgba(180, 248, 200, 0.15) 50%,
            rgba(165, 216, 255, 0.15) 100%);
}

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

.example-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 16, 240, 0.2);
    border-color: var(--neon-pink);
}

.example-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-placeholder {
    font-size: 4rem;
}

.example-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.example-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    font-size: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 10px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(212, 165, 255, 0.3);
    border-color: var(--neon-purple);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
}

.blog-placeholder {
    font-size: 4rem;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--neon-purple);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    margin: 1rem 0;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--neon-cyan);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--neon-pink);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Vlog Section */
.vlog-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,
            rgba(165, 216, 255, 0.15) 0%,
            rgba(212, 165, 255, 0.15) 50%,
            rgba(255, 179, 217, 0.15) 100%);
}

.vlog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 10px;
}

.vlog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vlog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 240, 255, 0.3);
    border-color: var(--neon-cyan);
}

.vlog-video {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vlog-placeholder {
    text-align: center;
    color: var(--bg-white);
}

.play-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.vlog-content {
    padding: 2rem;
}

.vlog-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.vlog-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.vlog-duration {
    color: var(--neon-purple);
    font-weight: 600;
    font-size: 0.95rem;
}

.vlog-cta {
    text-align: center;
    margin-top: 3rem;
}

.footer-links h4 {
    color: var(--pastel-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pastel-purple);
}

.footer-company-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-company-info p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-company-info p strong {
    color: var(--neon-cyan);
    font-size: 1rem;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* ===================================
   TABLET OPTIMIZATION (768px - 1024px)
   =================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero .container {
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.45rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Grid adjustments */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline-simple::before {
        left: 2.5rem;
    }

    .process-step-large {
        grid-template-columns: 80px 1fr;
    }

    .deliverables-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deliverables-intro {
        position: static;
    }

    .deliverables-lead {
        text-align: center;
        padding-bottom: 20px;
    }

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

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

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

/* ===================================
   NAVBAR OPTIMIZATION (max-width: 1080px)
   =================================== */
@media (max-width: 1080px) {
    /* Navigation */
    .navbar {
        padding: 1rem 0;
    }

    .navbar .container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-menu li a.cta-button {
        text-align: center;
        border: none;
        margin-top: 1rem;
    }

    .nav-contact-group {
        margin: 1.5rem 0 0.5rem;
        padding: 1.5rem 0 0;
        border-top: 1px solid rgba(176, 38, 255, 0.1);
        border-left: none;
        margin-left: 0;
        gap: 1rem;
    }
    
    .nav-contact-item {
        font-size: 1rem !important;
    }

    /* Mobile menu overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .logo-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.7rem;
    }
}

/* ===================================
   MOBILE OPTIMIZATION (max-width: 768px)
   =================================== */
@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-brand {
        font-size: 1rem;
    }

    .hero-creative {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.3;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .process-timeline-simple::before {
        left: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-contact-quick {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-contact-quick a {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        margin-top: 1rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Master Message */
    .message-box {
        padding: 2rem 1.5rem;
    }

    .big-claim {
        font-size: 1.3rem;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Process Timeline */
    .process-timeline-simple {
        gap: 0;
    }

    .process-step-large {
        grid-template-columns: 64px 1fr;
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .step-number-large {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .process-step-large h3 {
        font-size: 1.5rem;
    }

    .process-step-large p {
        font-size: 1rem;
    }

    .step-content {
        padding-top: 0.2rem;
    }

    .step-details li {
        font-size: 0.9rem;
    }

    .deliverables-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deliverables-lead {
        font-size: 1.6rem;
    }

    .deliverable-item ul {
        grid-template-columns: 1fr;
    }

    .audience-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .audience-label {
        align-items: flex-start;
    }

    /* Examples, Blog, Vlog */
    .examples-grid,
    .blog-grid,
    .vlog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .why-item p {
        padding-left: 4rem;
    }

    .why-heading {
        grid-template-columns: 48px 1fr;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form .btn-primary {
        width: 100%;
        min-width: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* ===================================
   SMALL MOBILE OPTIMIZATION (max-width: 480px)
   =================================== */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-creative {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-brand,
    .contact-eyebrow {
        font-size: 0.9rem;
    }

    .hero-image {
        height: auto;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Cards */
    .service-card,
    .example-card,
    .vlog-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3,
    .example-card h3,
    .blog-card h3,
    .vlog-card h3 {
        font-size: 1.3rem;
    }

    .service-card p,
    .example-card p,
    .blog-card p,
    .vlog-card p {
        font-size: 0.95rem;
    }

    .process-timeline-simple::before {
        left: 1.5rem;
    }

    .process-step-large {
        grid-template-columns: 50px 1fr;
        gap: 0.85rem;
        padding-bottom: 1.5rem;
    }

    .step-number-large {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .deliverables-lead {
        font-size: 1.35rem;
    }

    /* Icons */
    .icon {
        font-size: 2rem;
    }

    /* Contact form */
    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer p,
    .footer a {
        font-size: 0.9rem;
    }
}

/* ===================================
   FONT AWESOME ICON STYLING
   =================================== */

/* Value props icons */
.value-item .icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Deliverable icons */
.deliverable-icon {
    font-size: 1.35rem;
    color: var(--bg-white);
    margin-bottom: 0;
}

/* Audience icons */
.audience-icon {
    color: var(--neon-cyan);
    margin-right: 0.5rem;
}

/* Example placeholders */
.example-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Why icons */
.why-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    background-clip: border-box;
    color: var(--bg-white);
    margin-bottom: 0;
}

/* Blog placeholders */
.blog-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Vlog play icon */
.play-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Vlog duration icon */
.vlog-duration i {
    margin-right: 0.3rem;
}

/* Contact icons */
.contact-method .icon {
    font-size: 2rem;
    color: var(--neon-cyan);
}

/* ===================================
   ADDITIONAL LIGHT THEME ENHANCEMENTS
   =================================== */

/* Smooth color transitions */
.mr-sucker-template * {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Better text contrast */
strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Selection color */
::selection {
    background: var(--neon-pink);
    color: var(--bg-white);
}

::-moz-selection {
    background: var(--neon-pink);
    color: var(--bg-white);
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-cyan));
}