        .header {
            position: relative;
            min-height: 90vh;
            padding: 0;
            display: flex;
            flex-direction: column;
            background:var(--bg-dark);
            justify-content: flex-end;
        }

        .gradient-bar {
            background: linear-gradient(90deg, #00d4aa 0%, #ff6b9d 100%);
            height: 4px;
            width: 100%;
        }

        .nav {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .nav-logo div {
            width: 20px;
            height: 20px;
            background-color: #ffffff;
        }

        .nav-logo div:first-child {
            clip-path: polygon(0 0, 60% 0, 60% 100%, 0 100%);
        }

        .nav-logo div:nth-child(2) {
            clip-path: polygon(0 0, 100% 0, 100% 60%, 0 60%);
        }

        .nav-logo div:last-child {
            clip-path: polygon(40% 0, 100% 40%, 60% 100%, 0 60%);
        }

        .nav-menu {
            display: grid;
            grid-template-columns: repeat(2, 12px);
            grid-template-rows: repeat(2, 12px);
            gap: 6px;
        }

        .nav-menu div {
            background-color: #ffffff;
        }

        .hero-content {
            /*flex: 1;*/
            display: flex;
            /*flex-direction: column;
            justify-content: center;*/
            padding: 140px 40px;
            /*max-width: 1400px;
            margin: 0 auto;*/
            width: 100%;
        }

        .hero-category {
            font-size: 14px;
            text-transform: uppercase;
            color: white;
            margin-bottom: 4px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-title {
            font-size: clamp(32px, 6vw, 48px);
            color: white;
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            /*margin-bottom: 60px;*/
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .action-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .action-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .action-btn:active {
            transform: scale(0.95);
        }

        .btn-primary, .btn-user-experience {
            background-color: var(--pink);
            background-image: url("img/users.svg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 24px 24px;
        }

        .btn-secondary, .btn-user-interface {
            background-color: var(--blue);
            background-image: url("img/device-phone-mobile.svg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 24px 24px;
        }

        .btn-tertiary, .btn-visual-design {
            background-color: var(--green);
            background-image: url("img/eye.svg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 24px 24px;
        }

        .btn-quaternary {
            border: 1px #FFF solid;
            background-color: var(--bg-dark);
            background-image: url("img/arrow-down.svg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 32px 32px;
        }
        

        .hero-display {
            display: flex;
            align-items: baseline;
            gap: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

        .hero-number {
            font-family: 'N27';
            font-size: clamp(200px, 25vw, 400px);
            font-weight: 500;
            line-height: 0.8;
            color: #e0e0e0;
            letter-spacing: -0.05em;
            position: relative;
        }

        .hero-time {
            font-size: clamp(80px, 15vw, 200px);
            font-weight: 300;
            color: #e0e0e0;
            align-self: flex-end;
            margin-bottom: 20px;
        }

        /* Desktop layout */
        @media (min-width: 1025px) {
            .hero-content {
                flex-direction: row;
                align-content: stretch;
            }

            .hero-left {
                display: flex;
                flex-direction: column;
                max-width: 300px;
                min-height: 200px;
                justify-content: space-between;

            }

            .hero-right {
                flex: 1;
                display: flex;
                justify-content: flex-end;
                /*align-items: flex-end;
                margin-top: -100px;*/
            }

            .hero-display {
                /*flex-direction: column;*/
                align-items: flex-end;
                gap: 20px;
            }

            .hero-number {
                text-align: right;
            }

            .hero-time {
                margin-bottom: 0;
            }
        }


      /* 🌐 Tablet and below (≤1024px) */
        @media (max-width: 1024px) {
          :root {
            --container-margin: 2rem;
          }

          .hero-content {
            flex: 1;
            flex-direction: column;
            padding: 80px 2rem 2rem;
            justify-content: space-between;
            text-align: left;
          }

          .navbar-container {
            padding: 1.5rem 2rem;
          }

          .navbar-stripe {
            padding: 0 2rem;
          }

          .image-caption,
          .image-caption-post {
            padding: 2rem;
          }

          .image-caption h4, 
          .image-caption-post h4 {
            font-size: .5rem;
            padding-bottom: .25rem;
          }

          .tag h4 {
            padding:0;
          }
          
          .image-caption h3, 
          .image-caption-post h3 {
            font-size: 1rem;  
          }  

          .hero-display {
            margin-top: 40px;
          }


          .action-btn {
            width: 55px;
            height: 55px;
            font-size: 20px;
          }
        }

        @media (min-width: 768px) and (max-width: 1024px) {

            .hero-left-container {
                width: 50%;
            }

        }

        /* 📱 Mobile and below (≤768px) */
        @media (max-width: 768px) {
          .nav {
            top: 15px;
            left: 15px;
            right: 15px;
          }

          .hero-category {
            font-size: 12px;
            letter-spacing: 2px;
          }

          .hero-actions {
            justify-content: flex-start;
            gap: 15px;
            margin-bottom: 40px;
          }

          .action-btn {
            width: 50px;
            height: 50px;
            font-size: 18px;
          }

          .hero-display {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            margin-top: 20px;
          }

          .hero-number {
            text-align: center;
          }

          .hero-time {
            margin-bottom: 0;
          }

          .image-block,
          .image-block-color {
            aspect-ratio: 1 / 1;
          }

          .menu-container {
            margin: 10rem 2rem;
          }
        }

        /* 📱 Small mobile (≤480px) */
        @media (max-width: 480px) {
          .action-btn {
            width: 45px;
            height: 45px;
            font-size: 16px;
          }

          .hero-actions {
            gap: 12px;
          }
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hover effects for large numbers */
        .hero-number:hover {
            color: var(--green);
            transition: color 0.3s ease;
        }

        /* Ripple effect */
        .action-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
        }

        .action-btn:active::before {
            width: 100px;
            height: 100px;
        }

        /* Smooth transitions for all interactive elements */
        * {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }