@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

    #hb-header-scoped-root {
      --hb-yellow: #FFD700;
      --hb-blue: #0057B7;
      --hb-black: #000000;
      --hb-white: #ffffff;
      
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
    }

    #hb-header-scoped-root *, 
    #hb-header-scoped-root *::before, 
    #hb-header-scoped-root *::after {
      box-sizing: border-box;
    }

    /* Fixed Wrapper */
    #hb-header-scoped-root .hb-wrapper {
      position: fixed;
      top: 24px;
      left: 0;
      right: 0;
      z-index: 99999;
      padding: 0 16px;
      width: 100%;
    }

    /* Main Navigation Bar */
    #hb-header-scoped-root .hb-bar {
      max-width: 1280px;
      margin: 0 auto;
      background: var(--hb-yellow);
      border: 4px solid var(--hb-black);
      border-radius: 30px;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 10px 10px 0px 0px var(--hb-black);
      /* Performance optimized transitions */
      transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1), 
                  box-shadow 0.2s cubic-bezier(0.2, 0, 0.2, 1);
      position: relative;
      /* Prevent mobile "pumping" resize */
      backface-visibility: hidden;
    }

    /* Desktop Hover (Disabled for touch devices later) */
    @media (min-width: 1025px) {
      #hb-header-scoped-root .hb-bar:hover {
        transform: translate(-2px, -2px);
        box-shadow: 12px 12px 0px 0px var(--hb-black);
      }
    }

    /* Logo Group (Left Side) */
    #hb-header-scoped-root .hb-logo-container {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      flex-shrink: 0;
    }

    #hb-header-scoped-root .hb-logo-box {
      width: 48px;
      height: 48px;
      background: var(--hb-white);
      border: 4px solid var(--hb-black);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 4px 4px 0px 0px var(--hb-black);
      animation: hb-heartbeat 2s infinite ease-in-out;
      will-change: transform;
    }

    #hb-header-scoped-root .hb-logo-text-group {
      display: flex;
      flex-direction: column;
    }

    #hb-header-scoped-root .hb-logo-main {
      font-weight: 900;
      text-transform: uppercase;
      font-size: 18px;
      letter-spacing: -0.05em;
      color: var(--hb-black);
      line-height: 1;
    }

    #hb-header-scoped-root .hb-logo-sub {
      font-weight: 900;
      text-transform: uppercase;
      font-size: 9px;
      letter-spacing: 0.2em;
      color: var(--hb-blue);
      line-height: 1;
      margin-top: 4px;
    }

    /* Right Side Container (Nav + CTA) */
    #hb-header-scoped-root .hb-desktop-right {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    #hb-header-scoped-root .hb-nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    #hb-header-scoped-root .hb-nav-link {
      text-decoration: none;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--hb-black);
      position: relative;
      padding: 4px 0;
    }

    #hb-header-scoped-root .hb-nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--hb-blue);
      transition: width 0.2s ease;
    }

    #hb-header-scoped-root .hb-nav-link:hover::after {
      width: 100%;
    }

    /* CTA Button */
    #hb-header-scoped-root .hb-cta {
      background: var(--hb-blue);
      color: var(--hb-white);
      font-weight: 900;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      padding: 12px 28px;
      border: 4px solid var(--hb-black);
      border-radius: 14px;
      text-decoration: none;
      box-shadow: 4px 4px 0px 0px var(--hb-black);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      display: inline-block;
      white-space: nowrap;
    }

    @media (min-width: 1025px) {
      #hb-header-scoped-root .hb-cta:hover {
        transform: translateY(-3px);
        box-shadow: 6px 6px 0px 0px var(--hb-black);
      }
    }

    #hb-header-scoped-root .hb-cta:active {
      transform: translateY(2px);
      box-shadow: 0px 0px 0px 0px var(--hb-black);
    }

    /* Mobile Hamburger Trigger */
    #hb-header-scoped-root .hb-mobile-trigger {
      display: none;
      width: 44px;
      height: 44px;
      background: var(--hb-white);
      border: 3px solid var(--hb-black);
      border-radius: 10px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
      box-shadow: 4px 4px 0px 0px var(--hb-black);
      flex-shrink: 0;
    }

    #hb-header-scoped-root .hb-mobile-trigger span {
      width: 22px;
      height: 3px;
      background: var(--hb-black);
      border-radius: 2px;
    }

    /* Mobile Drawer */
    #hb-header-scoped-root #hb-drawer {
      position: fixed;
      inset: 0;
      background: var(--hb-yellow);
      z-index: 100000;
      padding: 30px;
      display: flex;
      flex-direction: column;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    #hb-header-scoped-root #hb-drawer.hb-open {
      transform: translateY(0);
    }

    #hb-header-scoped-root .hb-drawer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    #hb-header-scoped-root .hb-close-btn {
      width: 54px;
      height: 54px;
      background: var(--hb-black);
      color: var(--hb-white);
      border-radius: 50%;
      border: none;
      font-size: 36px;
      font-weight: 900;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 4px 4px 0px 0px rgba(255,255,255,0.3);
    }

    #hb-header-scoped-root .hb-mobile-nav-list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    #hb-header-scoped-root .hb-mobile-item {
      display: block;
      width: 100%;
      padding: 18px;
      background: var(--hb-white);
      border: 3px solid var(--hb-black);
      border-radius: 20px;
      text-align: center;
      text-decoration: none;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--hb-black);
      box-shadow: 6px 6px 0px 0px var(--hb-black);
    }

    #hb-header-scoped-root .hb-mobile-cta {
      display: block;
      width: 100%;
      padding: 22px;
      background: var(--hb-blue);
      color: var(--hb-white);
      border: 4px solid var(--hb-black);
      border-radius: 22px;
      text-align: center;
      text-decoration: none;
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 8px 8px 0px 0px var(--hb-black);
      margin-top: 10px;
    }

    /* Keyframes */
    @keyframes hb-heartbeat {
      0% { transform: scale(1); }
      15% { transform: scale(1.1); }
      30% { transform: scale(1); }
      45% { transform: scale(1.05); }
      60% { transform: scale(1); }
    }

    /* Mobile Responsive Optimizations */
    @media (max-width: 1024px) {
      #hb-header-scoped-root .hb-wrapper {
        top: 16px;
        padding: 0 12px;
      }
      #hb-header-scoped-root .hb-bar {
        padding: 8px 16px;
        border-width: 3px;
        box-shadow: 6px 6px 0px 0px var(--hb-black);
        border-radius: 24px;
      }
      #hb-header-scoped-root .hb-desktop-right {
        display: none;
      }
      #hb-header-scoped-root .hb-mobile-trigger {
        display: flex;
      }
      #hb-header-scoped-root .hb-logo-box {
        width: 40px;
        height: 40px;
        border-width: 3px;
        border-radius: 12px;
      }
      #hb-header-scoped-root .hb-logo-main {
        font-size: 16px;
      }
      #hb-header-scoped-root .hb-logo-sub {
        font-size: 8px;
      }
    }

body {
            font-family: 'Nunito', sans-serif;
            background: #FFFDF0;
            margin: 0;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
        }

        /* Custom Keyframes */
        @keyframes blink {
            0%, 94%, 100% { transform: scaleY(0); }
            96%, 98% { transform: scaleY(1); }
        }
        .animate-blink {
            animation: blink 4s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }
        .animate-float {
            animation: float 6s infinite ease-in-out;
        }

        @keyframes heartbeat-pulse {
            0% { transform: scale(1); }
            14% { transform: scale(1.1); }
            28% { transform: scale(1); }
            42% { transform: scale(1.05); }
            70% { transform: scale(1); }
        }
        .animate-heartbeat {
            animation: heartbeat-pulse 1.5s infinite ease-in-out;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
            50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
        }
        .animate-sparkle {
            animation: sparkle 3s infinite;
        }

        @keyframes line-draw {
            to { stroke-dashoffset: 0; }
        }
        .heartbeat-line-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: line-draw 10s linear infinite;
        }

        /* Responsive Perspective container */
        #hero-visual-container {
            perspective: 1000px;
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        .minion-shadow {
            box-shadow: 8px 8px 0px 0px #1E3A8A;
        }
        @media (min-width: 1024px) {
            .minion-shadow {
                box-shadow: 14px 14px 0px 0px #1E3A8A;
            }
        }
        
        .hover-pop {
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .hover-pop:active {
            transform: scale(0.95);
        }
        @media (hover: hover) {
            .hover-pop:hover {
                transform: scale(1.05) translateY(-5px);
            }
        }

        /* Prevent unwanted cropping by setting a safe overflow */
        .safe-container {
            overflow: visible !important;
        }

        /* Hide scrollbar for cleaner look */
        ::-webkit-scrollbar {
            display: none;
        }

:root {
            --minion-yellow: #FFD700;
            --minion-blue: #0057B7;
        }

        body {
            font-family: 'Fredoka', sans-serif;
            background-color: #f0f7ff;
            overflow-x: hidden;
        }

        .font-luckiest { font-family: 'Luckiest Guy', cursive; }

        /* Sticker Effect Text */
        .sticker-text {
            color: white;
            -webkit-text-stroke: 10px black;
            paint-order: stroke fill;
            filter: drop-shadow(6px 6px 0px rgba(0,0,0,0.2));
        }

        .sticker-blue {
            color: var(--minion-blue);
            -webkit-text-stroke: 10px white;
            paint-order: stroke fill;
            filter: drop-shadow(8px 8px 0px black);
        }

        /* 3D Physical Shadow */
        .comic-shadow {
            box-shadow: 12px 12px 0px 0px #000;
        }

        /* Smooth Pupil Tracking */
        .pupil {
            transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Eyelid Animation */
        @keyframes blink {
            0%, 90%, 100% { height: 0%; }
            95% { height: 105%; }
        }
        .eyelid {
            animation: blink 4s infinite;
        }

        /* Bouncy Entrance */
        @keyframes bounce-in {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.1); }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }
        .animate-bounce-in {
            animation: bounce-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        /* Floating Background Bubbles */
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -30px); }
        }
        .bubble-float {
            animation: float 6s ease-in-out infinite;
        }

        /* Card Hover */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .card-hover:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 16px 16px 0px 0px #000;
        }

/* Scoped Font Import */
        @import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Fredoka:wght@400;600;700&display=swap');

        #heartbeat-services {
            --m-yellow: #FFD700;
            --m-blue: #0057B7;
            --m-black: #1A1A1A;
            --m-white: #FFFFFF;
            --m-slate-500: #64748b;
            --m-slate-800: #1e293b;
            
            position: relative;
            font-family: 'Fredoka', sans-serif;
            background-color: #f0faff;
            overflow: hidden;
            padding: 80px 24px;
            color: var(--m-black);
            width: 100%;
            box-sizing: border-box;
        }

        #heartbeat-services * {
            box-sizing: border-box;
        }

        /* Sunburst Background */
        #heartbeat-services .m-sunburst {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 250vmax;
            height: 250vmax;
            background: repeating-conic-gradient(
                from 0deg,
                rgba(255, 215, 0, 0.1) 0deg 15deg,
                transparent 15deg 30deg
            );
            transform: translate(-50%, -50%);
            z-index: 0;
            animation: m-rotate 120s linear infinite;
            pointer-events: none;
        }

        @keyframes m-rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Typography */
        #heartbeat-services .luckiest { font-family: 'Luckiest Guy', cursive; }
        
        #heartbeat-services .m-title-container {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 80px;
        }

        #heartbeat-services .m-text-pop {
            display: block;
            font-size: clamp(4rem, 12vw, 10rem);
            color: var(--m-white);
            -webkit-text-stroke: 6px var(--m-black);
            paint-order: stroke fill;
            filter: drop-shadow(6px 6px 0px rgba(0,0,0,0.15));
            line-height: 0.85;
            margin: 0;
        }

        #heartbeat-services .m-text-blue {
            display: block;
            font-size: clamp(4rem, 12vw, 10rem);
            color: var(--m-blue);
            -webkit-text-stroke: 6px var(--m-white);
            paint-order: stroke fill;
            filter: drop-shadow(6px 6px 0px var(--m-black));
            line-height: 0.85;
            margin: -10px 0 0 0;
        }

        /* Goggles */
        #heartbeat-services .eye-wrap {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        #heartbeat-services .m-eye {
            width: 100px;
            height: 100px;
            background: #eee;
            border: 8px solid #555;
            border-radius: 50%;
            position: relative;
            box-shadow: 4px 4px 0 rgba(0,0,0,0.1), inset 0 0 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        #heartbeat-services .m-pupil {
            width: 32px;
            height: 32px;
            background: #111;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -16px 0 0 -16px;
            will-change: transform;
        }

        #heartbeat-services .m-pupil::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 5px;
            left: 5px;
            opacity: 0.8;
        }

        #heartbeat-services .m-eyelid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: var(--m-yellow);
            border-bottom: 3px solid var(--m-black);
            z-index: 10;
            transition: height 0.1s ease-in-out;
        }

        #heartbeat-services .blinking .m-eyelid { height: 100%; }

        /* Grid & Cards */
        #heartbeat-services .m-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            #heartbeat-services .m-grid { grid-template-columns: repeat(2, 1fr); }
            #heartbeat-services .m-text-pop, #heartbeat-services .m-text-blue { -webkit-text-stroke-width: 10px; }
        }

        @media (min-width: 1024px) {
            #heartbeat-services .m-grid { grid-template-columns: repeat(3, 1fr); }
        }

        #heartbeat-services .m-card {
            background: var(--m-white);
            border: 8px solid var(--m-black);
            border-radius: 40px;
            padding: 40px;
            box-shadow: 12px 12px 0px 0px var(--m-black);
            transition: transform 0.1s ease-out, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            text-align: left;
            will-change: transform;
        }

        #heartbeat-services .m-card:hover {
            box-shadow: 18px 18px 0px 0px var(--m-black);
        }

        #heartbeat-services .m-card-blue {
            background: var(--m-blue);
            color: var(--m-white);
            border-color: var(--m-white);
        }

        #heartbeat-services .m-card-yellow {
            background: var(--m-yellow);
            color: var(--m-blue);
        }

        #heartbeat-services .m-icon {
            width: 70px;
            height: 70px;
            background: var(--m-yellow);
            border: 4px solid var(--m-black);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
            box-shadow: 5px 5px 0 var(--m-black);
        }

        #heartbeat-services .m-card-blue .m-icon { background: var(--m-white); }
        #heartbeat-services .m-card-yellow .m-icon { background: var(--m-white); }

        #heartbeat-services .m-card h3 {
            font-size: 28px;
            margin: 0 0 15px 0;
            line-height: 1;
        }

        #heartbeat-services .m-card p {
            font-weight: 600;
            font-size: 18px;
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        #heartbeat-services .m-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            flex-grow: 1;
        }

        #heartbeat-services .m-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
        }

        #heartbeat-services .m-badge {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--m-black);
            color: white;
            border-radius: 8px;
            font-size: 14px;
        }

        #heartbeat-services .m-card-blue .m-badge { background: var(--m-yellow); color: var(--m-blue); }
        #heartbeat-services .m-card-yellow .m-badge { background: var(--m-white); border: 2px solid var(--m-black); color: var(--m-black); }

        /* Button */
        #heartbeat-services .m-btn {
            background: var(--m-blue);
            color: white;
            border: 5px solid var(--m-black);
            padding: 15px;
            border-radius: 20px;
            font-size: 22px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 8px 0 var(--m-black);
            transition: all 0.1s;
            text-transform: uppercase;
        }

        #heartbeat-services .m-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 0 var(--m-black); }
        #heartbeat-services .m-btn:active { transform: translateY(6px); box-shadow: 0 2px 0 var(--m-black); }
        
        #heartbeat-services .m-card-blue .m-btn { background: var(--m-yellow); color: var(--m-blue); }
        #heartbeat-services .m-card-yellow .m-btn { background: var(--m-white); color: var(--m-blue); }

        /* Reveal Animation */
        #heartbeat-services .m-reveal {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        #heartbeat-services .m-reveal.active { opacity: 1; transform: translateY(0) scale(1); }

        /* Sticker Subtitle */
        #heartbeat-services .m-sticker-note {
            display: inline-block;
            background: white;
            border: 6px solid var(--m-black);
            padding: 20px 40px;
            border-radius: 30px;
            box-shadow: 10px 10px 0 var(--m-black);
            transform: rotate(-2deg);
            margin-top: 30px;
        }

        #heartbeat-services .m-sticker-note p {
            margin: 0;
            color: var(--m-blue);
            font-size: 24px;
            font-weight: 700;
        }

        /* Footer */
        #heartbeat-services footer {
            margin-top: 100px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        #heartbeat-services .big-cta {
            display: inline-block;
            position: relative;
            cursor: pointer;
        }

        #heartbeat-services .big-cta-bg {
            position: absolute;
            inset: 0;
            background: var(--m-black);
            border-radius: 100px;
            transform: translate(8px, 8px);
        }

        #heartbeat-services .big-cta-content {
            position: relative;
            background: white;
            border: 8px solid var(--m-black);
            padding: 25px 60px;
            border-radius: 100px;
            font-size: 40px;
            color: var(--m-blue);
            transition: transform 0.1s;
        }

        #heartbeat-services .big-cta:hover .big-cta-content { transform: translate(-4px, -4px); }
        #heartbeat-services .big-cta:active .big-cta-content { transform: translate(4px, 4px); }

:root {
            --m-yellow: #FFD700;
            --m-blue: #0057B7;
            --m-black: #1A1A1A;
            --m-white: #FFFFFF;
            --m-red: #FF4B2B;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: #f0faff;
            font-family: 'Fredoka', sans-serif;
            overflow-x: hidden;
        }

        #minion-pipeline {
            position: relative;
            width: 100%;
            min-height: 100vh;
            padding: 60px 20px;
            overflow: hidden;
            background-image: 
                linear-gradient(rgba(0, 87, 183, 0.1) 2px, transparent 2px),
                linear-gradient(90deg, rgba(0, 87, 183, 0.1) 2px, transparent 2px);
            background-size: 40px 40px;
        }

        @media (min-width: 768px) {
            #minion-pipeline {
                padding: 120px 20px;
                background-size: 60px 60px;
            }
        }

        .font-luckiest { font-family: 'Luckiest Guy', cursive; }

        /* --- COMIC STARBURST --- */
        .comic-starburst {
            position: absolute;
            top: 15%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: var(--m-yellow);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            transform: translate(-50%, -50%) rotate(-5deg);
            z-index: 0;
            opacity: 0.2;
            animation: pulse-star 6s ease-in-out infinite;
            pointer-events: none;
        }

        @media (min-width: 768px) {
            .comic-starburst {
                width: 900px;
                height: 900px;
            }
        }

        @keyframes pulse-star {
            0%, 100% { transform: translate(-50%, -50%) rotate(-5deg) scale(1); }
            50% { transform: translate(-50%, -50%) rotate(5deg) scale(1.15); }
        }

        /* --- 3D COMIC TEXT --- */
        .text-comic-3d {
            font-size: clamp(3rem, 12vw, 11rem);
            line-height: 0.85;
            text-transform: uppercase;
            color: var(--m-white);
            -webkit-text-stroke: 8px var(--m-black);
            paint-order: stroke fill;
            filter: drop-shadow(8px 8px 0px rgba(0,0,0,0.15));
            display: block;
        }

        .text-comic-blue {
            font-size: clamp(3rem, 12vw, 11rem);
            line-height: 0.85;
            text-transform: uppercase;
            color: var(--m-blue);
            -webkit-text-stroke: 8px var(--m-white);
            paint-order: stroke fill;
            filter: drop-shadow(8px 8px 0px var(--m-black));
            display: block;
            margin-top: -5px;
        }

        @media (min-width: 768px) {
            .text-comic-3d { -webkit-text-stroke-width: 14px; filter: drop-shadow(15px 15px 0px rgba(0,0,0,0.15)); }
            .text-comic-blue { -webkit-text-stroke-width: 14px; filter: drop-shadow(12px 12px 0px var(--m-black)); margin-top: -15px; }
        }

        /* --- ADVENTURE PATH CARDS --- */
        .adventure-map {
            max-width: 1200px;
            margin: 40px auto 0;
            position: relative;
            padding-bottom: 80px;
        }

        @media (min-width: 768px) {
            .adventure-map { margin: 80px auto 0; padding-bottom: 120px; }
        }

        .map-line {
            position: absolute;
            left: 20px;
            top: -20px;
            bottom: 40px;
            width: 10px;
            background: var(--m-blue);
            border: 4px solid var(--m-black);
            z-index: 1;
        }

        @media (min-width: 768px) {
            .map-line { left: 50%; width: 16px; border-width: 6px; transform: translateX(-50%); }
        }

        .gear-node {
            position: absolute;
            left: 20px;
            transform: translateX(-50%);
            background: #f0faff;
            border-radius: 50%;
            padding: 4px;
            font-size: 24px;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .gear-node { left: 50%; font-size: 40px; }
        }

        .step-panel {
            display: flex;
            width: 100%;
            margin-bottom: 100px; /* Increased to prevent mobile overlapping */
            position: relative;
            z-index: 2;
            padding-left: 50px;
        }

        @media (min-width: 768px) {
            .step-panel { margin-bottom: 160px; padding-left: 0; }
            .step-panel.left { justify-content: flex-start; }
            .step-panel.right { justify-content: flex-end; }
        }

        .sticker-card {
            width: 100%;
            background: var(--m-white);
            border: 8px solid var(--m-black);
            border-radius: 30px;
            padding: 25px;
            box-shadow: 12px 12px 0 var(--m-black);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            opacity: 0;
            transform: translateY(40px) scale(0.9);
        }

        @media (min-width: 768px) {
            .sticker-card { width: 45%; border-width: 12px; border-radius: 45px; padding: 45px; box-shadow: 25px 25px 0 var(--m-black); transform: translateY(60px) scale(0.85); }
        }

        .sticker-card.revealed {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        @media (hover: hover) {
            .sticker-card:hover {
                transform: scale(1.04) rotate(1deg) translateY(-10px);
                box-shadow: 20px 20px 0 var(--m-black);
            }
            .step-panel.right .sticker-card:hover {
                transform: scale(1.04) rotate(-1deg) translateY(-10px);
            }
        }

        .step-badge {
            position: absolute;
            top: -25px;
            left: 20px;
            background: var(--m-yellow);
            color: var(--m-black);
            padding: 8px 20px;
            border: 4px solid var(--m-black);
            border-radius: 15px;
            font-size: 18px;
            box-shadow: 4px 4px 0 var(--m-black);
            z-index: 5;
        }

        @media (min-width: 768px) {
            .step-badge { top: -35px; padding: 12px 35px; border-width: 7px; border-radius: 22px; font-size: 26px; box-shadow: 8px 8px 0 var(--m-black); }
            .step-panel.left .step-badge { right: 40px; left: auto; transform: rotate(6deg); }
            .step-panel.right .step-badge { left: 40px; transform: rotate(-6deg); }
        }

        .sticker-card h3 {
            font-size: 24px;
            color: var(--m-blue);
            margin-top: 20px; /* Gap between badge and heading */
            margin-bottom: 12px;
            text-transform: uppercase;
            line-height: 1;
        }

        @media (min-width: 768px) {
            .sticker-card h3 { font-size: 40px; margin-top: 30px; margin-bottom: 20px; }
        }

        .sticker-card p {
            font-size: 16px;
            font-weight: 600;
            color: #444444;
            line-height: 1.4;
        }

        @media (min-width: 768px) {
            .sticker-card p { font-size: 22px; line-height: 1.5; }
        }

        /* --- BIG BUTTON CTA --- */
        .big-action-button {
            display: inline-block;
            background: var(--m-red);
            color: white;
            border: 8px solid var(--m-black);
            padding: 20px 40px;
            border-radius: 60px;
            font-size: 24px;
            box-shadow: 0 10px 0 var(--m-black);
            transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            position: relative;
            z-index: 10;
        }

        @media (min-width: 768px) {
            .big-action-button { border-width: 12px; padding: 35px 90px; border-radius: 120px; font-size: 52px; box-shadow: 0 18px 0 var(--m-black); }
        }

        .big-action-button:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 0 var(--m-black);
        }

        @media (min-width: 768px) {
            .big-action-button:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 26px 0 var(--m-black); }
        }

        .big-action-button:active {
            transform: translateY(8px);
            box-shadow: 0 2px 0 var(--m-black);
        }

        /* --- DECORATIONS --- */
        .deco-item {
            position: absolute;
            z-index: 5;
            pointer-events: none;
            opacity: 0.8;
            font-size: 50px;
            animation: float-anim 5s ease-in-out infinite;
        }

        @media (min-width: 768px) {
            .deco-item { font-size: 100px; opacity: 0.9; }
        }

        @keyframes float-anim {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(15deg); }
        }

/* 1. SCOPED VARIABLES & FONTS */
    @import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Fredoka:wght@400;500;600;700&display=swap');

    #hb-estimate-wrapper {
      --hb-yellow: #FFD700;
      --hb-blue: #0057B7;
      --hb-black: #111111;
      --hb-bg: #FFFDF0;
      font-family: 'Fredoka', sans-serif;
      background-color: var(--hb-bg);
      color: var(--hb-black);
      position: relative;
      min-height: 600px;
      padding: 20px 15px 40px 15px;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    #hb-estimate-wrapper * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    /* 2. TYPOGRAPHY & UTILS */
    #hb-estimate-wrapper .luckiest {
      font-family: 'Luckiest Guy', cursive;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* 3. LAYOUT */
    #hb-estimate-wrapper .main-container {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      position: relative;
      z-index: 10;
    }

    @media (min-width: 992px) {
      #hb-estimate-wrapper { padding: 40px 20px; }
      #hb-estimate-wrapper .main-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
      }
    }

    /* 4. MASCOT & HEADER */
    #hb-estimate-wrapper .header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 40px;
      text-align: center;
    }

    #hb-estimate-wrapper .goggles {
      background: #333;
      padding: 15px 20px;
      border-radius: 100px;
      display: flex;
      gap: 15px;
      border-bottom: 6px solid rgba(0,0,0,0.3);
      box-shadow: 8px 8px 0px var(--hb-black);
      animation: hb-float 4s ease-in-out infinite;
      margin-bottom: 20px;
    }

    #hb-estimate-wrapper .eye {
      width: 60px; height: 60px;
      background: white;
      border-radius: 50%;
      border: 6px solid var(--hb-black);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 768px) {
      #hb-estimate-wrapper .goggles { padding: 20px 30px; gap: 20px; box-shadow: 10px 10px 0px var(--hb-black); }
      #hb-estimate-wrapper .eye { width: 85px; height: 85px; border-width: 8px; }
      #hb-estimate-wrapper .header { margin-bottom: 60px; }
    }

    #hb-estimate-wrapper .eyelid {
      position: absolute; top: 0; left: 0; right: 0; height: 100%;
      background: var(--hb-black); z-index: 2;
      transform-origin: top; transform: scaleY(0);
      animation: hb-blink 5s infinite;
    }

    #hb-estimate-wrapper .pupil {
      width: 30px; height: 30px;
      background: var(--hb-black); border-radius: 50%;
      position: relative; transition: transform 0.1s ease-out;
    }
    #hb-estimate-wrapper .pupil::after {
      content: ''; position: absolute; top: 4px; left: 4px;
      width: 8px; height: 8px; background: white; border-radius: 50%;
    }

    #hb-estimate-wrapper .title-box { position: relative; display: inline-block; }
    #hb-estimate-wrapper .title-bg {
      position: absolute; inset: -5px;
      background: var(--hb-black); border-radius: 100px; transform: rotate(1deg);
    }
    #hb-estimate-wrapper .main-title {
      position: relative; background: var(--hb-blue); color: var(--hb-yellow);
      padding: 15px 40px; border-radius: 100px; border: 6px solid var(--hb-black);
      font-size: 2rem; margin: 0; box-shadow: 8px 8px 0px var(--hb-black);
      transform: rotate(-1deg); line-height: 1;
    }
    @media (min-width: 768px) {
      #hb-estimate-wrapper .main-title { font-size: 3.5rem; padding: 20px 60px; border-width: 8px; box-shadow: 12px 12px 0px var(--hb-black); }
      #hb-estimate-wrapper .title-bg { inset: -10px; }
    }

    /* 5. CARDS & MODULES */
    #hb-estimate-wrapper .card {
      background: white; border: 6px solid var(--hb-black);
      border-radius: 2rem; padding: 25px 20px;
      box-shadow: 8px 8px 0px var(--hb-black);
    }
    @media (min-width: 768px) {
      #hb-estimate-wrapper .card { padding: 40px; border-width: 8px; border-radius: 3.5rem; box-shadow: 10px 10px 0px var(--hb-black); }
    }

    #hb-estimate-wrapper .step-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
    #hb-estimate-wrapper .step-title { font-size: 1.8rem; color: var(--hb-blue); margin: 0; }
    #hb-estimate-wrapper .step-tag { background: var(--hb-yellow); border: 3px solid var(--hb-black); padding: 4px 10px; border-radius: 10px; font-size: 0.9rem; transform: rotate(-2deg); }

    #hb-estimate-wrapper .module-list { display: flex; flex-direction: column; gap: 12px; }

    #hb-estimate-wrapper .module-btn {
      display: flex; align-items: center; width: 100%; padding: 15px;
      background: white; border: 4px solid #f1f5f9; border-radius: 1.5rem;
      cursor: pointer; transition: all 0.2s; text-align: left;
    }
    @media (min-width: 768px) {
      #hb-estimate-wrapper .module-btn { padding: 20px; border-radius: 2rem; border-width: 6px; }
    }

    #hb-estimate-wrapper .module-btn:hover { border-color: var(--hb-black); transform: translateY(-2px); }
    #hb-estimate-wrapper .module-btn.active { background: var(--hb-blue); color: white; border-color: var(--hb-black); box-shadow: 5px 5px 0px var(--hb-black); transform: translateY(-3px); }

    #hb-estimate-wrapper .module-icon {
      width: 50px; height: 50px; background: #f8fafc; border-radius: 1rem;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin-right: 15px; flex-shrink: 0;
    }
    #hb-estimate-wrapper .module-btn.active .module-icon { background: rgba(255,255,255,0.2); }

    #hb-estimate-wrapper .module-label { font-size: 1.2rem; line-height: 1; margin-bottom: 2px; }
    #hb-estimate-wrapper .module-desc { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; opacity: 0.6; }
    #hb-estimate-wrapper .module-price { margin-left: auto; text-align: right; }
    #hb-estimate-wrapper .price-amt { font-size: 1.2rem; line-height: 1; }
    #hb-estimate-wrapper .price-type { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; opacity: 0.5; }

    /* 6. ESTIMATE DISPLAY */
    #hb-estimate-wrapper .sticky-aside { display: none; } 
    @media (min-width: 992px) {
      #hb-estimate-wrapper .sticky-aside { display: block; position: sticky; top: 40px; }
    }

    #hb-estimate-wrapper .estimate-box {
      background: var(--hb-yellow); border: 8px solid var(--hb-black);
      border-radius: 3rem; padding: 40px 20px; text-align: center;
      box-shadow: 10px 10px 0px var(--hb-black);
    }

    #hb-estimate-wrapper .cost-section { margin-bottom: 25px; }
    #hb-estimate-wrapper .cost-label { font-size: 1rem; opacity: 0.6; margin-bottom: 2px; }
    #hb-estimate-wrapper .cost-value { font-size: 3.5rem; line-height: 1; }
    #hb-estimate-wrapper .cost-sub { font-size: 1.2rem; opacity: 0.3; }

    #hb-estimate-wrapper .cta-btn {
      display: block; width: 100%; background: var(--hb-blue); color: white;
      padding: 20px; border-radius: 100px; border: 5px solid var(--hb-black);
      font-size: 1.8rem; text-decoration: none; box-shadow: 0 8px 0px var(--hb-black);
      transition: all 0.1s; margin-bottom: 20px;
    }
    #hb-estimate-wrapper .cta-btn:active { transform: translateY(8px); box-shadow: 0 0px 0px var(--hb-black); }

    /* 7. MOBILE STICKY BAR */
    #hb-estimate-wrapper .mobile-summary {
      background: white; border: 4px solid var(--hb-black);
      border-radius: 2rem; padding: 12px 20px; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15), 5px 5px 0px var(--hb-black);
      position: sticky; top: 10px; margin: 20px 0;
      animation: hb-pop-in 0.3s ease-out;
    }
    @media (min-width: 992px) { #hb-estimate-wrapper .mobile-summary { display: none; } }

    #hb-estimate-wrapper .mob-total-box { display: flex; flex-direction: column; }
    #hb-estimate-wrapper .mob-val { font-size: 1.4rem; line-height: 1; color: var(--hb-blue); }
    #hb-estimate-wrapper .mob-label { font-size: 0.6rem; font-weight: 900; opacity: 0.4; text-transform: uppercase; }

    #hb-estimate-wrapper .mob-call {
      background: var(--hb-blue); color: white; border-radius: 15px;
      padding: 10px 18px; border: 3px solid var(--hb-black);
      box-shadow: 3px 3px 0px var(--hb-black); font-size: 1rem;
    }

    /* 8. ANIMATIONS */
    @keyframes hb-blink { 0%, 96%, 100% { transform: scaleY(0); } 98% { transform: scaleY(1); } }
    @keyframes hb-float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
    @keyframes hb-pop-in { 0% { transform: scale(0.9) translateY(40px); opacity: 0; } 100% { transform: scale(1) translateY(0); opacity: 1; } }

:root {
            --m-yellow: #FFD700;
            --m-blue: #0057B7;
            --m-black: #1A1A1A;
            --m-white: #FFFFFF;
            --m-red: #FF4B2B;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: #f0faff;
            font-family: 'Fredoka', sans-serif;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
        }

        .font-luckiest { font-family: 'Luckiest Guy', cursive; }

        /* Comic text effects */
        .text-comic-pop {
            font-family: 'Luckiest Guy', cursive;
            color: var(--m-white);
            -webkit-text-stroke: 2px var(--m-black);
            paint-order: stroke fill;
            line-height: 1.1;
            filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.15));
            text-transform: uppercase;
            text-align: center;
        }

        .text-comic-blue {
            color: var(--m-blue);
            -webkit-text-stroke: 2px var(--m-white);
            paint-order: stroke fill;
            filter: drop-shadow(3px 3px 0px var(--m-black));
        }

        @media (min-width: 768px) {
            .text-comic-pop { 
                -webkit-text-stroke-width: 10px; 
                filter: drop-shadow(10px 10px 0px rgba(0,0,0,0.15)); 
                line-height: 0.9;
            }
            .text-comic-blue { -webkit-text-stroke-width: 8px; }
        }

        /* Scroller Animations */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scroll-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .scroller-left {
            animation: scroll-left 40s linear infinite;
        }

        .scroller-right {
            animation: scroll-right 35s linear infinite;
        }

        @media (max-width: 768px) {
            .scroller-left { animation-duration: 25s; }
            .scroller-right { animation-duration: 20s; }
        }

        .scroller-container:hover .scroller {
            animation-play-state: paused;
        }

        .scroller {
            display: flex;
            width: max-content;
        }

        .scroller-container {
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        /* Card Squeeze Effect */
        .squeeze-card {
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
        }
        .squeeze-card:hover {
            transform: scaleX(1.05) scaleY(0.92) translateY(5px);
            box-shadow: 10px 4px 0 var(--m-black);
            z-index: 50;
        }

        /* Halftone Background Overlay */
        .halftone-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(var(--m-blue) 10%, transparent 10%);
            background-size: 25px 25px;
            opacity: 0.05;
            pointer-events: none;
        }

/* Scoped styles to prevent affecting other parts of a potential host page */
        #heartbeat-turbo-section {
            --m-yellow: #FFD700;
            --m-blue: #0057B7;
            --m-black: #1A1A1A;
            --m-white: #FFFFFF;
            --m-cyan: #00f2ff;
            --m-red: #FF4B2B;
            --m-slate: #E2E8F0;
            --m-gold: #FFC000;

            position: relative;
            background: var(--m-yellow);
            color: var(--m-black);
            font-family: 'Fredoka', sans-serif;
            overflow: hidden;
            transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 100vh;
        }

        #heartbeat-turbo-section .font-luckiest { font-family: 'Luckiest Guy', cursive; }

        /* --- WACKY BACKGROUND --- */
        #heartbeat-turbo-section #bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: radial-gradient(circle at 50% 50%, #FFD700 0%, #E6C200 100%);
            overflow: hidden;
            transition: opacity 0.5s ease;
        }

        #heartbeat-turbo-section .floating-item {
            position: absolute;
            opacity: 0.15;
            pointer-events: none;
            z-index: 1;
        }

        /* --- BUBBLE TYPOGRAPHY --- */
        #heartbeat-turbo-section .bubble-text {
            font-size: clamp(3rem, 10vw, 8rem);
            line-height: 0.85;
            color: var(--m-white);
            -webkit-text-stroke: 6px var(--m-black);
            paint-order: stroke fill;
            filter: drop-shadow(6px 6px 0px var(--m-blue));
            text-transform: uppercase;
        }

        #heartbeat-turbo-section .bubble-subtext {
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: var(--m-yellow);
            -webkit-text-stroke: 3px var(--m-black);
            paint-order: stroke fill;
            filter: drop-shadow(3px 3px 0px var(--m-black));
        }

        /* --- THE MINION GOGGLE METER --- */
        #heartbeat-turbo-section .goggle-meter {
            position: relative;
            width: 220px;
            height: 220px;
            background: #ddd;
            border: 10px solid #555;
            border-radius: 50%;
            box-shadow: 
                inset 0 10px 20px rgba(0,0,0,0.1),
                0 15px 0px #333;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: transform 0.2s ease-out;
        }
        #heartbeat-turbo-section .goggle-strap {
            position: absolute;
            width: 130%;
            height: 30px;
            background: #333;
            z-index: -1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        #heartbeat-turbo-section .eye-white {
            width: 80%;
            height: 80%;
            background: white;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 4px solid #eee;
        }
        #heartbeat-turbo-section .pupil {
            width: 50px;
            height: 50px;
            background: #331a00;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 10px solid #000;
            transition: width 0.3s, height 0.3s;
        }
        #heartbeat-turbo-section .pupil::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 20%;
            right: 20%;
        }

        /* --- 3D INTERACTIVE BUTTON --- */
        #heartbeat-turbo-section .btn-container {
            perspective: 1200px;
        }
        #heartbeat-turbo-section .bouncy-btn-3d {
            background: var(--m-slate);
            color: var(--m-black);
            font-family: 'Luckiest Guy', cursive;
            font-size: clamp(1.2rem, 3.5vw, 2.2rem);
            padding: 1.2rem 3.5rem;
            border-radius: 35px;
            border: 7px solid var(--m-black);
            box-shadow: 0 12px 0 var(--m-black);
            transition: background 0.4s, box-shadow 0.2s, transform 0.2s;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            white-space: nowrap;
            position: relative;
            transform-style: preserve-3d;
        }
        #heartbeat-turbo-section .bouncy-btn-3d:hover {
            background: var(--m-yellow);
            box-shadow: 0 16px 0 var(--m-black);
        }
        #heartbeat-turbo-section .bouncy-btn-3d:active {
            transform: translateY(8px) !important;
            box-shadow: 0 4px 0 var(--m-black);
        }

        /* --- CONFIDENT TURBO MODE EFFECTS --- */
        #heartbeat-turbo-section.turbo-active {
            background: #00f2ff !important;
        }
        
        @keyframes pulse-confident {
            0%, 100% { transform: scale(1); filter: brightness(1); }
            50% { transform: scale(1.02); filter: brightness(1.15); }
        }

        #heartbeat-turbo-section .turbo-glow-confident {
            animation: pulse-confident 2s infinite ease-in-out;
            box-shadow: 0 0 50px rgba(0, 242, 255, 0.4);
        }

        #heartbeat-turbo-section .meter-label {
            background: var(--m-black);
            color: white;
            padding: 6px 20px;
            border-radius: 12px;
            font-family: 'Luckiest Guy', cursive;
            font-size: 2.2rem;
            display: inline-block;
            margin-top: -10px;
            position: relative;
            z-index: 10;
            transition: all 0.3s;
        }

        #heartbeat-turbo-section .content-group {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

/* 1. FONTS & VARIABLES */
    @import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Fredoka:wght@400;600;700&display=swap');

    #hb-footer-standalone-root {
      --hb-yellow: #FFD700;
      --hb-blue-bright: #0057B7;
      --hb-blue-dark: #0a1128;
      --hb-white: #ffffff;
      --hb-text-muted: rgba(255, 255, 255, 0.7);
      
      font-family: 'Fredoka', sans-serif;
      background-color: var(--hb-blue-dark);
      color: var(--hb-white);
      position: relative;
      overflow: hidden;
      padding: 100px 40px 60px;
      box-sizing: border-box;
      width: 100%;
    }

    #hb-footer-standalone-root * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    /* 2. BACKGROUND ELEMENTS */
    #hb-footer-standalone-root .bg-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.05;
      background-image: 
        linear-gradient(rgba(255, 215, 0, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.2) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 1;
    }

    #hb-footer-standalone-root .floating-gear {
      position: absolute;
      width: 120px;
      height: 120px;
      background: var(--hb-yellow);
      mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.47,5.34 14.86,5.12L14.47,2.5C14.43,2.25 14.22,2.07 13.97,2.07H9.97C9.72,2.07 9.5,2.25 9.47,2.5L9.09,5.12C8.47,5.34 7.9,5.66 7.38,6.05L4.89,5.05C4.67,4.96 4.4,5.05 4.27,5.27L2.27,8.73C2.15,8.95 2.2,9.22 2.39,9.37L4.5,11C4.47,11.34 4.44,11.67 4.44,12C4.44,12.33 4.47,12.65 4.5,12.97L2.39,14.63C2.2,14.78 2.15,15.05 2.27,15.27L4.27,18.73C4.4,18.95 4.67,19.04 4.89,18.95L7.38,17.95C7.9,18.34 8.47,18.66 9.09,18.88L9.47,21.5C9.5,21.75 9.72,21.93 9.97,21.93H13.97C14.22,21.93 14.43,21.75 14.47,21.5L14.86,18.88C15.47,18.66 16.04,18.34 16.56,17.95L19.05,18.95C19.27,19.04 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z" /></svg>');
      mask-repeat: no-repeat;
      mask-position: center;
      opacity: 0.04;
      z-index: 1;
      animation: hb-rotate-gear 25s linear infinite;
    }

    @keyframes hb-rotate-gear {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* 3. MASCOT EYES */
    #hb-footer-standalone-root .eye-container {
      display: flex;
      gap: 12px;
      margin-bottom: 25px;
    }

    #hb-footer-standalone-root .eye {
      width: 32px;
      height: 32px;
      background: var(--hb-white);
      border-radius: 50%;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 0 rgba(0,0,0,0.4);
    }

    #hb-footer-standalone-root .pupil {
      width: 14px;
      height: 14px;
      background: #111;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease-out;
    }

    #hb-footer-standalone-root .eyelid {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 0;
      background: var(--hb-yellow);
      z-index: 2;
      transition: height 0.1s;
    }

    #hb-footer-standalone-root.blinking .eyelid {
      height: 100%;
    }

    /* 4. CONTENT GRID - FORCED SINGLE ROW */
    #hb-footer-standalone-root .container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }

    #hb-footer-standalone-root .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
      gap: 30px;
      align-items: start;
    }

    /* 5. BRANDING */
    #hb-footer-standalone-root .brand-title {
      font-family: 'Luckiest Guy', cursive;
      font-size: 2.2rem;
      background: linear-gradient(to bottom, #fff, var(--hb-yellow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0;
      line-height: 1.1;
      text-transform: uppercase;
      filter: drop-shadow(0 4px 0 rgba(0,0,0,0.6));
    }

    #hb-footer-standalone-root .brand-desc {
      margin-top: 20px;
      font-size: 16px;
      line-height: 1.5;
      color: var(--hb-text-muted);
    }

    /* 6. LINKS & BUTTONS */
    #hb-footer-standalone-root .section-heading {
      font-family: 'Luckiest Guy', cursive;
      font-size: 1.4rem;
      color: var(--hb-yellow);
      text-transform: uppercase;
      margin-bottom: 25px;
      letter-spacing: 1.2px;
      white-space: nowrap;
    }

    #hb-footer-standalone-root .link-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    #hb-footer-standalone-root .link-item {
      margin-bottom: 12px;
    }

    #hb-footer-standalone-root .footer-link {
      color: var(--hb-text-muted);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-block;
      font-size: 15px;
    }

    #hb-footer-standalone-root .footer-link:hover {
      color: var(--hb-yellow);
      transform: translateX(8px);
    }

    #hb-footer-standalone-root .social-group {
      display: flex;
      gap: 12px;
      margin-top: 15px;
    }

    #hb-footer-standalone-root .social-btn {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #hb-footer-standalone-root .social-btn svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    #hb-footer-standalone-root .social-btn:hover {
      background: var(--hb-yellow);
      color: var(--hb-blue-dark);
      transform: translateY(-5px) rotate(8deg);
      border-color: var(--hb-yellow);
    }

    #hb-footer-standalone-root .cta-pill {
      background: var(--hb-yellow);
      color: var(--hb-blue-dark);
      padding: 14px 24px;
      border-radius: 99px;
      font-family: 'Luckiest Guy', cursive;
      text-transform: uppercase;
      display: inline-block;
      text-decoration: none;
      box-shadow: 0 5px 0 #b38f00;
      transition: all 0.2s;
      margin-top: 10px;
      font-size: 1rem;
      white-space: nowrap;
    }

    #hb-footer-standalone-root .cta-pill:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 7px 0 #b38f00;
    }

    #hb-footer-standalone-root .contact-info {
      color: var(--hb-text-muted);
      font-size: 15px;
      margin-bottom: 18px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    #hb-footer-standalone-root .contact-info a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
      word-break: break-all;
    }

    #hb-footer-standalone-root .contact-info a:hover {
      color: var(--hb-yellow);
    }

    /* 7. REVEAL ANIMATION */
    #hb-footer-standalone-root .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    #hb-footer-standalone-root .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* 8. RESPONSIVE REFINEMENT */
    @media (max-width: 992px) {
      #hb-footer-standalone-root .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }
    
    @media (max-width: 600px) {
       #hb-footer-standalone-root .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      #hb-footer-standalone-root .eye-container,
      #hb-footer-standalone-root .social-group,
      #hb-footer-standalone-root .contact-info {
        justify-content: center;
      }
    }